java selenium操作弹出对话框示例讲解

网友投稿 243 2023-07-09


java selenium操作弹出对话框示例讲解

Web 开发人员通常需要利用javascript弹出对话框来给用户一些信息提示, 包括以下几种类型

阅读目录

对话框类型

测试页面

Selenium 操作对话框的代码

对话框类型

1.  警告框: 用于提示用户相关信息的验证结果, 错误或警告等

2. 提示框: 用于提示用户在当前对话框中输入数据,一般需要用户单击取消或者确认按钮

3. 确认框: 用于提示用户确认或者取消某个操作,一般需要用户单击取消或者确认按钮

测试页面

用如下页面为例进行讲解,  包括了警http://告框,提示框,确认框

http://sislands.com/coin70/week1/dialogbox.htm

Selenium 操作对话框的代码

http://

public static void testAlert(WebDriver driver)

{

String url="http://sislands.com/coin70/week1/dialogbox.htm";

driver.get(url);

WebElement alertButton = driver.findElemenhttp://t(By.xpath("//input[@value='alert']"));

alertButton.click();

Alert javascriptAlert = driver.switchTo().alert();

System.out.println(javascriptAlert.getText());

javascriptAlert.accept();

}

public static void testPrompt(WebDriver driver) throws Exception

{

String url="http://sislands.com/coin70/week1/dialogbox.htm";

driver.get(url);

WebElement promptButton = driver.findElement(By.xpath("//input[@value='prompt']"));

promptButton.click();

Thread.sleep(2000);

Alert javascriptPrompt = driver.switchTo().alert();

javascriptPrompt.sendKeys("This is learning Selenium");

javascriptPrompt.accept();

System.out.println(javascriptPrompt.getText());

javascriptPrompt=driver.switchTo().alert();

javascriptPrompt.accept();

Thread.sleep(2000);

promptButton.click();

javascriptPrompt=driver.switchTo().alert();

javascriptPrompt.dismiss();

Thread.sleep(2000);

javascriptPrompt=driver.switchTo().alert();

javascriptPrompt.accept();

}

public static void testConfirm(WebDriver driver) throws Exception

{

String url="http://sislands.comLQPbaRr/coin70/week1/dialogbox.htm";

driver.get(url);

WebElement confirmButton = driver.findElement(By.xpath("//input[@value='confirm']"));

confirmButton.click();

Thread.sleep(2000);

Alert javascriptConfirm = driver.switchTo().alert();

javascriptConfirm.accept();

Thread.sleep(2000);

javascriptConfirm = driver.switchTo().alert();

javascriptConfirm.accept();

}

以上就是对 java selenium操作弹出对话框的资料整理,后续继续补充,谢谢大家对本站的支持!


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:java selenium教程环境搭建基于Maven
下一篇:java selenium使用浏览器调试工具实现方法
相关文章

 发表评论

暂时没有评论,来抢沙发吧~