如何判断 Selenium for Java 中是否选中了一个复选框?

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

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();

相关文章