XPath嵌套查询与ID

时间:2018-01-17 12:18:22

标签: html xpath

我使用XPath查询在HTML页面中查找某些元素,但它没有按预期工作。我想在元素TR中找到id =" row1"的复选框。 Checkbox既没有名字也没有id。

我的页面如下:

<table>                
<thead>
 <tr>...</tr>
    </thead>
    <tbody>                            
     <tr id="row1">
      <td class="center">
        <div class="aaa">
          <label >
            <span >AA</span>        
            <input type="checkbox">

我的查询是/是:

tr[@id='row1']/input[@type='checkbox']
tr[id='row1']//input[@type='checkbox']
tr[@id='row1']//input[@type='checkbox']

但它们都不起作用。

0 个答案:

没有答案