我正在使用selenium webdriver点击两个复选框。
我使用了Xpath和ID来点击。但是我收到了这个错误:Unable to locate element
table id="checkboxfield-1321" class="x-field x-form-item x-field-default x-anchor-form-item" cellpadding="0" style="table-layout: auto;"
table id="checkboxfield-1322" class="x-field x-form-item x-field-default x-anchor-form-item" cellpadding="0" style="table-layout: auto;"
答案 0 :(得分:0)
css = table.x-anchor-form-item:nth-of-type(1)input - Check Box 1的CSS选择器
css = table.x-anchor-form-item:nth-of-type(2)input - Check Box 2的CSS选择器
请告诉我上述CSS选择器是否正常工作。