【发布时间】:2021-07-20 06:52:09
【问题描述】:
我正在编写一个与浏览器交互的机器人(不要说服我为 Selenium 或 Keyboard 和其他人重写),它给了我一个错误。附近没有名称为 pyautogui 的文件,我尝试将其命名为 main 和 python v3.8、3.9。在每种情况下都收到此错误。 macOS
/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/rubicon/objc/ctypes_patch.py:21: UserWarning: rubicon.objc.ctypes_patch has only been tested with Python 3.4 through 3.8. You are using Python 3.9.4. Most likely things will work properly, but you may experience crashes if Python's internals have changed significantly.
warnings.warn(
Traceback (most recent call last):
File "/Users/alina/PycharmProjects/ABOBA/main_miner_alienworlds.py", line 183, in <module>
for i in pyautogui.getWindowsWithTitle('##### #######'):
AttributeError: module 'pyautogui' has no attribute 'getWindowsWithTitle'
import pyautogui
…
for j in pyautogui.getWindowsWithTitle('##### #######'):
do something
pyautogui 是用 pip3 安装的
【问题讨论】: