有一个复选框显示已经检查过,现在当我检查它时显示图像src.在
HTML中.当我单击复选框时,它将被取消选中或选中.
为了验证它的状态,我编写了这段代码,即使选中了复选框,也总是会出错.
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"); }
为什么?