如何判断 Selenium for Java 中是否选中了复选框? [英] How do you tell if a checkbox is selected in Selenium for Java?

查看:41
本文介绍了如何判断 Selenium for Java 中是否选中了复选框?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 Java 中使用 Selenium 来测试 Web 应用程序中复选框的检查.代码如下:

I am using Selenium in Java to test the checking of a checkbox in a webapp. Here's the code:

private boolean isChecked;
private WebElement e;

我声明了 e 并将其分配到复选框所在的区域.

I declare e and assign it to the area where the checkbox is.

isChecked = e.findElement(By.tagName("input")).getAttribute("checked").equals("true");

奇怪的是 getAttribute("checked") 返回 null,因此返回 NullPointerException

What is weird is that getAttribute("checked") returns null and therefore a NullPointerException

在复选框的 HTML 中,没有显示 checked 属性.然而,不是所有的 input 元素都有一个 checked = "true" 所以这段代码应该可以工作吗?

In the HTML for the checkbox, there is no checked attribute displayed. However, isn't it the case that all input elements have a checked = "true" so this code should work?

推荐答案

如果您使用的是 Webdriver,那么您要查找的项目是 Selected.

If you are using Webdriver then the item you are looking for is Selected.

除非指定,否则在复选框的渲染中通常不会实际应用选中的属性.

Often times in the render of the checkbox doesn't actually apply the attribute checked unless specified.

所以你会在 Selenium Webdriver 中寻找的是这个

So what you would look for in Selenium Webdriver is this

isChecked = e.findElement(By.tagName("input")).Selected;

由于WebDriver Java API中没有Selected,所以上面的代码应该是这样的:

As there is no Selected in WebDriver Java API, the above code should be as follows:

isChecked = e.findElement(By.tagName("input")).isSelected();

这篇关于如何判断 Selenium for Java 中是否选中了复选框?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆