我正在使用selenium进行自动化,并且在我自动化过程的某些部分,我得到一个系统弹出:
我想点击“确定”,我该怎么做?
感谢
解答:
How to handle Javascript Alert/pop up window in selenium webdriver
答案 0 :(得分:0)
Autoit提供了Windows GUI交互。
答案 1 :(得分:0)
在macOS上尝试AppleScript。它可以处理系统弹出窗口。
tell application "System Events" to tell process "NotificationCenter"
click last item of windows
end tell
示例是如何单击系统弹出窗口。
也许您可以修改它以用于您的案例。