无法使用C#使用SeleniumWebDriver查找CheckBox项

时间:2019-06-03 08:00:24

标签: c# selenium-webdriver checkbox

我需要为Web应用程序编写一些自动TC,但是使用SeleniumWebDriver找不到复选框按钮。

我尝试使用Xpath,ClassName,但没有任何帮助

<label class ="select-label custom-control-label" for="77486440">
::before
::after
</label>

我希望检查/单击CheckBox项

1 个答案:

答案 0 :(得分:0)

我看不到您发布的代码中的任何复选框,我希望那里应该是<input type="checkbox">之类的东西,因此我建议您仔细查看您的页面源代码。

关于上述标签,您可以使用XPath选择器找到它,例如:

//label[contains(@class,'select-label')]

enter image description here

更多信息: