我在 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();
这篇关于如何判断 Selenium for Java 中是否选中了一个复选框?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
如何检测 32 位 int 上的整数溢出?How can I detect integer overflow on 32 bits int?(如何检测 32 位 int 上的整数溢出?)
return 语句之前的局部变量,这有关系吗?Local variables before return statements, does it matter?(return 语句之前的局部变量,这有关系吗?)
如何将整数转换为整数?How to convert Integer to int?(如何将整数转换为整数?)
如何在给定范围内创建一个随机打乱数字的 intHow do I create an int array with randomly shuffled numbers in a given range(如何在给定范围内创建一个随机打乱数字的 int 数组)
java的行为不一致==Inconsistent behavior on java#39;s ==(java的行为不一致==)
为什么 Java 能够将 0xff000000 存储为 int?Why is Java able to store 0xff000000 as an int?(为什么 Java 能够将 0xff000000 存储为 int?)