'NoneType'对象是不可迭代的-查找图像,即使它不在那一刻

时间:2018-10-04 22:05:53

标签: pyinstaller pyautogui

如果我想查找图像,即使不是在那一刻,而是何时找到它,我可以使用什么代码? 我的代码是:

import  pyautogui as auto
import time
import pyautogui


def Saludar (seconds,schedule) :

    while (1>0) and (schedule == True) :
        time.sleep(seconds)

        x, y = auto.locateCenterOnScreen('linea.png', grayscale=True)
        auto.moveTo(x,y)
        pyautogui.click()
        print("YA")



if __name__== "__main__":
    Saludar(2,True)

0 个答案:

没有答案