Skip to content

Commit 8cd02dc

Browse files
author
Jain
committed
AutoCursorHover
1 parent 502051f commit 8cd02dc

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

AutoCursorHover/AutoCursorHover.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import pyautogui as pg
2+
import time
3+
4+
#pip install -i https://pypi.rd.corpintra.net/root/pypi <package-name> --trusted-host pypi.rd.corpintra.net
5+
6+
while(True):
7+
8+
pg.click(x=100, y=200)
9+
#pyautogui.move(0, 50)
10+
time.sleep(10)
11+
pg.click(x=200, y=400)
12+
time.sleep(10)
13+
#pyautogui.move(0, -50)
14+

0 commit comments

Comments
 (0)