Answers for "pyautogui mouse scroll"

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)
Posted by: Guest on February-27-2021
1

pyautogui mouse up mouse down

>>> import pyautogui
>>> pyautogui.click(10, 5)
Posted by: Guest on February-26-2020

Python Answers by Framework

Browse Popular Code Answers by Language