码迷,mamicode.com
首页 > 编程语言 > 详细

操作JavaScript的Alert弹框

时间:2017-03-01 12:23:13      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:input   int   单击   get   exce   trace   exception   获取   cat   

@Test
public void testHandleAlert(){
WebElement button =driver.findElement(By.xpath("input"));
button.click();
try {
//使用driver.switchTo().alert()方法获取Alert对象
Alert alert = driver.switchTo().alert();
Assert.assertEquals("这是一个Alert弹框", alert.getText());
//使用Alert对象的accept方法,单击Alert框上的“确定”按钮,关闭Alert框
alert.accept();
} catch (NoAlertPresentException e) {
Assert.fail("尝试操作的alert框未找到");
e.printStackTrace();
}
}

操作JavaScript的Alert弹框

标签:input   int   单击   get   exce   trace   exception   获取   cat   

原文地址:http://www.cnblogs.com/alisapan/p/6483401.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!