我正在使用Selenium WebDriver和
Python绑定来自动执行一些单调的wordpress任务,直到此时它才非常简单.我正在尝试选择一个复选框,但我能识别它的唯一方法是通过它后面的文本.以下是HTML的相关部分:
<li id="product_cat-52"> <label class="selectit"> <input value="52" type="checkBox" name="tax_input[product_cat][]" id="in-product_cat-52"> polishpottery </label> </li>
我在脚本中识别此复选框的唯一信息是字符串“polishpottery”.有没有办法选择该复选框,只知道后面的文字?