博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何处理alert、confirm、prompt对话框
阅读量:5277 次
发布时间:2019-06-14

本文共 1512 字,大约阅读时间需要 5 分钟。

1 import java.io.File; 2  3 import org.openqa.selenium.Alert; 4 import org.openqa.selenium.By; 5 import org.openqa.selenium.WebDriver; 6 import org.openqa.selenium.chrome.ChromeDriver; 7  8 /* 9  * 如何处理alert、confirm、prompt对话框 10  */11 public class DialogsTest {12 13     public static void main(String[] args) {14         WebDriver dr = new ChromeDriver();15         File file = new File("learning/Dialogs.html");16         String filePath = "file:///" + file.getAbsolutePath();17         System.out.println("filePath: " + filePath);18         19         dr.get(filePath);20         dr.findElement(By.id("alert")).click();21         Alert alert = dr.switchTo().alert();22         String alertText = alert.getText();23         System.out.println("alert text: " + alertText);24         25         // 点击弹出对话框的叉掉按钮26         alert.dismiss();27         28         dr.findElement(By.id("confirm")).click();29         Alert confirm = dr.switchTo().alert();30         String confirmText = confirm.getText();31         System.out.println("confirm text: " + confirmText);32         33         // 点击弹出对话框的确定按钮34         confirm.accept();35         36         dr.findElement(By.id("prompt")).click();37         Alert prompt = dr.switchTo().alert();38         String promptText = prompt.getText();39         System.out.println("prompt text: " +  promptText);40         prompt.sendKeys("tester...");41         prompt.accept();42         43         dr.quit();44     }45 46 }

 

转载于:https://www.cnblogs.com/Roger1227/p/3833831.html

你可能感兴趣的文章
Linux编程简介——gcc
查看>>
2019年春季学期第四周作业
查看>>
MVC4.0 利用IActionFilter实现简单的后台操作日志功能
查看>>
rotate the clock
查看>>
bugku 变量
查看>>
数据库01 /Mysql初识以及基本命令操作
查看>>
数据库02 /MySQL基础数据类型以及多表之间建立联系
查看>>
Python并发编程04/多线程
查看>>
CF461B Appleman and Tree
查看>>
CF219D Choosing Capital for Treeland
查看>>
杂七杂八的小笔记本
查看>>
51Nod1353 树
查看>>
CF1215E Marbles
查看>>
BZOJ2339 HNOI2011卡农(动态规划+组合数学)
查看>>
octave基本操作
查看>>
axure学习点
查看>>
WPF文本框只允许输入数字[转]
查看>>
dom4j 通用解析器,解析成List<Map<String,Object>>
查看>>
第一个项目--用bootstrap实现美工设计的首页
查看>>
使用XML传递数据
查看>>