python Pyautogui关于非内部对象错误

iq3niunx  于 2022-11-27  发布在  Python
关注(0)|答案(1)|浏览(94)

Error图像存在于文件夹中,但我不知道为什么程序给出错误
我不知道该怎么办请帮帮我

gudnpqoy

gudnpqoy1#

pyautogui.click("otvet.png")将获取x,y值,并且您正在传递一个.png文件,我认为您希望这样做:

# Locate the image on screen, this will return x,y value if image is found and none if it is not
otvet = pyautogui.locateOnScreen("otvet.png")

# Click on the x,y value
pyautogui.click(otvet)

相关问题