我写了一个实习功能测试,它从一个单元复制数据并将其粘贴到另一个单元。问题是每次运行测试并复制数据我得到一个带有消息的对话框
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中测试仍然失败。它不稳定。如何使其稳定。