如何避免UnexpectedAlertOpen - 实习生Leadfoot

时间:2015-12-02 18:41:44

标签: selenium selenium-webdriver webdriver intern leadfoot

我写了一个实习功能测试,它从一个单元复制数据并将其粘贴到另一个单元。问题是每次运行测试并复制数据我得到一个带有消息的对话框

Pasting from clipboard is currently turned off by your browser.Local Data will be used 现在因为这个弹出窗口我的功能测试冻结了,其他一切都开始失败了。幸运的是,避免这种情况有一种方法。 .acceptAlert()

.copyfunction()
.sleep(500) //wait for popup
.acceptAlert() //first attempt to copy after login causes alert about using local memory                    
.pastefunction()

虽然这在本地有效但有时候在jenkins中测试仍然失败。它不稳定。如何使其稳定。

0 个答案:

没有答案