Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ges.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
pyautogui.hotkey('ctrl', 'pgup') # perform "ctrl+pgup" operation which moves to the previous tab

if 'down' in incoming_data: # if incoming data is 'down'
#pyautogui.press('down') # performs "down arrow" operation which scrolls down the page
# performs "down arrow" operation which scrolls down the page
pyautogui.scroll(-100)

if 'up' in incoming_data: # if incoming data is 'up'
#pyautogui.press('up') # performs "up arrow" operation which scrolls up the page
# performs "up arrow" operation which scrolls up the page
pyautogui.scroll(100)

if 'change' in incoming_data: # if incoming data is 'change'
Expand Down