我回顧了其他問題,例如(Python 'if x is None' not catching NoneType),我沒有發現這些信息可用於我的場景。 import pyautogui
##########################
#This is a looping routine to search for the current image and return its coor
我正在開發定時鼠標點擊遊戲的機器人。我正在使用pyautogui。目的是在一分鐘內點擊按鈕上的大部分時間。我的代碼是: import pyautogui, time
time.sleep(5)
while True:
pyautogui.click()
的無限循環是沒有問題的,因爲故障安全,防止任何不良後果(pyautogui.FAILSAFE()是默認設置爲True)。實際上,