这是HTML:
<li>
<input type="checkbox" checked="" name="selectedMstrPrivGroupList[9].mstrAuthorities[0].status"/>
Add Dexter
</li>
如何在 WebDriver 中单击此元素?它是一个复选框。我想使用 XPath,因为我在页面中有接近 30 多个复选框。这样我就可以创建一个通用方法并只传递 WebElement。我尝试了以下但没有奏效。
Driver.findElement(By.xpath("//input[contains(.,'Add Dexter')]")).click();