selenium+webdriver+python 中警告框的处理方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium+webdriver+python 中警告框的处理方法相关的知识,希望对你有一定的参考价值。
在自动化测试过程中,经常会遇到弹出警告框的情况,如图所示:
在 WebDriver 中处理 JavaScript 所生成的 alert、confirm 以及 prompt 是很简单的。具体做法是使用
switch_to_alert()方法定位到 alert/confirm/prompt。然后使用 text/accept/dismiss/send_keys 按需进行操做。
1. 获取警告框的text消息
2. 接受消息框(确定)
3. 取消
4. 输入值
text 返回 alert/confirm/prompt 中的文字信息。
accept 点击确认按钮。
dismiss 点击取消按钮,如果有的话。
send_keys 输入值,这个 alert\confirm 没有对话框就不能用了,不然会报错。
举例如下:
接受弹窗
driver.switch_to_alert().accept()
得到弹窗的文本消息,比如得到:请输入用户名!
message=driver.switch_to_alert().text
print(message)
取消按钮
driver.switch_to_alert().dismiss()
输入值
driver.switch_to_alert().send_keys(“hello”)
以上是关于selenium+webdriver+python 中警告框的处理方法的主要内容,如果未能解决你的问题,请参考以下文章
[python] python+selenium+webdriver