Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是硒的新手......
我用 java 为自动化脚本编写了一个 selenium 代码。在运行脚本时,我收到一个安全警告窗口,其中包含名为“继续”和“停止脚本”的选项。如何通过 selenium 控件单击继续。无法获取继续按钮的 xpath 或 id。
它不是应用程序窗口,它是 Firefox 安全警告窗口。所以,警报窗口方法 accept.alert() 不起作用。
你能告诉我如何处理那些类型的 Firefox 警告窗口。
在我的代码下面的两行代码中,通过在设置 firefox 首选项中使用这两行代码来解决在 Selenium 服务器中运行自动化脚本时出现“警告:无响应脚本”错误。profile.setPreference("dom.max_chrome_script_run_time", 0); profile.setPreference("dom.max_script_run_time", 0 );