如何使用selenium与系统弹出窗口进行通信?

时间:2016-01-28 14:06:18

标签: selenium selenium-webdriver webdriver selenium-chromedriver

我正在使用selenium进行自动化,并且在我自动化过程的某些部分,我得到一个系统弹出:

enter image description here

我想点击“确定”,我该怎么做?

感谢

解答:

How to handle Javascript Alert/pop up window in selenium webdriver

2 个答案:

答案 0 :(得分:0)

Autoit提供了Windows GUI交互。

答案 1 :(得分:0)

在macOS上尝试AppleScript。它可以处理系统弹出窗口。

tell application "System Events" to tell process "NotificationCenter"
    click last item of windows
end tell

示例是如何单击系统弹出窗口。

也许您可以修改它以用于您的案例。