codecamp

selenium2 警告框

class selenium.webdriver.common.alert.Alert(driver)

允许对警告框进行操作。

使用这个类和警告提醒框进行交互,这个类包含了 忽略、接受、输入 以及从提示框内获取文本的方法。

接受和忽略弹框:

Alert(driver).accept()
Alert(driver).dismiss()

prompt​里输入字符:

name_prompt = Alert(driver)
name_prompt.send_keys("Willian Shakephere")
name_prompt.accept()

读取​prompt​的提示字符:

alert_text = Alert(driver).text
self.assertEqual("Do you wish to quit?",alert_text)


accept()

确认提示框,用法:

Alert(driver).accept() #Confirm a alert dialog


authenticate(username,password)

向一个认证的对话框发送用户名和密码,会自动点击确认:

driver.switch_to.alert.authenticate('cheese','secretGouda')

参数: ​username:username​区域要填写的字符串 ​password:password​区域要填写的字符串。


dismiss()

忽略提示框。


send_keys(KeysToSend)

向对话框输入字符。


text

提示框的文本。


selenium2 行为链
selenium2 特殊字符
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }