I'm trying to do an automatic mouse clicker. My main issue now is how to do a timer for each function, for example, function 1 works for about 15 minutes, then function 2 after the 15 minutes starts to work just one time, then comeback to function 1. And i want to function4 Works independente from the others, i want it to click everytime even if the function 1 is running ( im not sure if this is possible) here is my code:
import pyautogui, sys
pyautogui.size()
(1280, 800)
def function1():
pyautogui.click(button='left', x=619, y=266)
pyautogui.PAUSE = 3.9
pyautogui.click(button='left', x=617, y=475)
def function2():
pyautogui.click(button='left', x=624, y=347)
pyautogui.PAUSE = 5.0
pyautogui.click(button='left', x=615, y=431)
pyautogui.PAUSE = 5.0
pyautogui.click(button='left', x=315, y=483)
pyautogui.PAUSE = 5.0
pyautogui.click(button='left', x=616, y=390)
def function3 ():
pyautogui.click(button='left', x=617, y=522)
pyautogui.PAUSE = 5.0
def function4():
pyautogui.click(button='left', x=1257, y=432)
Thank you all :)
Because it is not easy to manage multiple functions with wait independently without introducing a signal and multi-thread, here is another way to manage multiple
click()
functions with thePyAutoGUI
library.Step 1 - Use a
class TimerSeq
to store sequencer parametersStep 2 - Create a
class TimerExec
to manage a list of sequencersStep 3 - declare your sequencer based to your declared function
For function1(), use a 2 steps sequencer:
The sequencer is:
Step 4 - Create TimerExec object, add sequencer then execute.