我正在尝试使用硒从下面的给定HTML中检索ID。
<tr ..">
<td><input type="checkbox" id="chkTES_0" class="shftchkbox" data-id="-997278"> <span id="spTESCt_0" class="tesCount" data-key="3023005" title="This Test Execution Spec is not added yet">0</span></td>
<td ...></td></tr>
我尝试使用
element.find_elements(By.TAG_NAME,"td")[0].get_attribute("id")
但是,它给出了空字符串。我想念什么?
最佳答案
根据您共享的HTML,提取id
属性的值,例如从<input>
标记中输入chkTES_0,您可以使用以下代码行:
inputTagID = driver.find_element_by_xpath("//td//input[@class='shftchkbox' and @type='checkbox']").get_attribute("id")
关于python - 无法从WebElement检索特定属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50626107/