gpt4 book ai didi

html - 复选框的 isSelected() 方法总是返回 false

转载 作者:搜寻专家 更新时间:2023-10-31 08:04:42 26 4
gpt4 key购买 nike

有一个复选框已经显示为已选中,现在当我检查它时,它显示为 HTML 格式的 image src.。当我点击复选框时,它会被取消选中或选中。

为了验证其状态,我编写了这段代码,即使选中了该复选框,它也始终返回 false。

WebElement chBox = driver.findElement(By.xpath
("/html/body/div[3]/div[2]/form/fieldset/div[1]/table/tbody/tr[10]/td/img"));

if (chBox.isSelected()) {
System.out.println("User active check box is already checked");
} else
System.out.println("User active check box is not checked");
}

为什么?

最佳答案

检查类属性是否在选中/取消选中复选框时发生更改。如果是,则选择状态存储为类的一部分

    String Class=chk.getAttribute("class");

if(Class.contains("class name when it is checked"))
{
System.out.println("Status: "+chk.getAttribute("checked"));
//This will return Null, since it is not a real check box(type=checkbox),
//so there is no checked attribute in it
}
else
{

System.out.println("Not Checked");
}

isSelected() 方法不会处理这种类型的复选框,这就是为什么它总是返回 false 或未选中(从您的角度来看)引用:here

关于html - 复选框的 isSelected() 方法总是返回 false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25396301/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com