Can I infinitely loop a pyautogui function using time.sleep()?
I’m very new to python and I’m just trying to create a simple mouse moving+clicking script to remove some of my sent LinkedIn connection requests. I’m trying to make it loop infinitely but I just can’t figure it out 🙁 import pyautogui from time import sleep time.sleep(2) pyautogui.PAUSE = 2.5 pyautogui.moveTo(1171, 458) pyautogui.click() pyautogui.moveTo(1123, 403)… Read More Can I infinitely loop a pyautogui function using time.sleep()?