-3

堆栈跟踪

  org.openqa.selenium.UnhandledAlertException: Modal dialog present

构建信息:版本:'2.25.0',修订:'17482',时间:'2012-07-18 22:18:01' 系统信息:os.name:'Windows 7',os.arch:'amd64' , os.version: '6.1', java.version: '1.6.0_22' 驱动程序信息: driver.version: RemoteWebDriver 会话 ID: a2e9f47e-c4f9-4814-bd16-c12a028cf38e

4

2 回答 2

1

我已经在 ruby​​ 中尝试过这个,希望它有所帮助:)

出现对话框后粘贴以下关闭对话框

 @@driver.action.send_keys(:escape).perform

或者

 @@driver.action.send_keys("\xEE\x80\x8C").perform
于 2013-07-15T10:58:44.923 回答
0

你知道有处理模态对话框的 API 吗?

driver.switchTo().alert()

例如,如果要关闭它,请使用driver.switchTo().alert().dismiss().

于 2013-07-14T08:53:57.377 回答