pyautogui scroll code example
Example 1: how to scroll down a website using pyautogui
import pyautogui as gui
import time
time.sleep(5) #during the 5 secs move your cursor to the website you want to scroll
gui.scroll(any number)
Example 2: pyautogui moveTo overtime
import pyautogui
#pyautogui.moveTo(X, Y, Seconds)
pyautogui.moveTo(100, 100, 2) #Move to X=100, Y=100 over a 2 seconds period
Example 3: pyautogui mouse up mouse down
>>> import pyautogui
>>> pyautogui.click(10, 5)