pyautogui.center(location) 报错'NoneType' object is not subscriptable
时间: 2023-11-18 08:56:03 浏览: 163
Python 出现错误TypeError: ‘NoneType’ object is not iterable解决办法
5星 · 资源好评率100%
pyautogui.center(location) 报错'NoneType' object is not subscriptable是因为pyautogui.locateOnScreen()函数没有找到指定的图片,返回了None,而None是没有索引的,所以会报错。解决方法是检查图片路径是否正确,或者尝试使用更明显的图片来定位。另外,可以在使用pyautogui.locateOnScreen()函数前先使用pyautogui.screenshot()函数截取屏幕,以确保图片在屏幕上可见。
阅读全文