Python Selenium UnexpectedAlertPresentException

Python Selenium UnexpectedAlertPresentException

我正在 运行使用 python 和 lettuce 使用 selenium webdriver 进行基本的 CRUD 测试。

我的所有其他测试 运行 都很好,但是当我单击 "Delete" 时,会出现一个模式对话框,要求用户确认他们要删除该用户。弹出窗口出现的那一刻,我得到下面的异常。我浪费了 2 个小时试图让它工作。我想有一个简单的解决方法。

 File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/remote/errorhandler.py", line 164, in check_response
    raise exception_class(message, screen, stacktrace)
UnexpectedAlertPresentException: Message: u'Modal dialog present' ; Stacktrace: 
    at nsCommandProcessor.prototype.execute (file:///tmp/tmpeV2K89/extensions/fxdriver@googlecode.com/components/command_processor.js:11520:13)

steps.py 中抛出错误的行是这样的。

  world.browser.find_element_by_link_text("Delete User").click()

那个元素的 html 就是这个。

<a href="/users/5910974510923776/delete" onclick="return confirm('Are you sure you want to delete this user?');">Delete User</a>

您需要switch to the alert并接受它:

world.browser.find_element_by_link_text("Delete User").click()
alert = world.browser.switch_to.alert
alert.accept()