AttributeError: module 'pyautogui' has no attribute 'getWindowsWithTitle'
AttributeError: module 'pyautogui' has no attribute 'getWindowsWithTitle'
我正在编写一个与浏览器交互的机器人(不要说服我为 Selenium 或键盘等重写)并且它给了我一个错误。附近没有名为 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 安装的
你用错模块了!
https://pypi.org/project/PyGetWindow/ 是包含 getWindowsWithTitle
的模块
不幸的是,从 0.9.53 版开始,pyautogui 的 windows 功能仅适用于 Windows,请参阅以下来源的 https://i.stack.imgur.com/HKtcC.png:-
https://automatetheboringstuff.com/2e/chapter20/
我正在编写一个与浏览器交互的机器人(不要说服我为 Selenium 或键盘等重写)并且它给了我一个错误。附近没有名为 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 安装的
你用错模块了!
https://pypi.org/project/PyGetWindow/ 是包含 getWindowsWithTitle
不幸的是,从 0.9.53 版开始,pyautogui 的 windows 功能仅适用于 Windows,请参阅以下来源的 https://i.stack.imgur.com/HKtcC.png:- https://automatetheboringstuff.com/2e/chapter20/