gpt4 book ai didi

css - 使用 XPATH 的 Selenium Webdriver Python 从 html 表的第 1 列中找到文本我如何转到第 3 列

转载 作者:行者123 更新时间:2023-11-28 11:32:39 24 4
gpt4 key购买 nike

我有一个包含一些列的 HTML 表格。使用 XPATH 我从名称列中找到了文本。这是列索引 [1]从这里我想继续我的 XPATH 并转到第 3 列。索引 [3]我不知道如何继续我的 XPATH 以到达第 3 列。

我的 XPATH 是:

//table[@id="analysis_reports_ct_fields_body"]//span[contains(text(), "Matches")]

如果您查看下面的 HTML, TextView 位于第 3 列。我不想使用 TextView ,因为该文本有时是空白的。

HTML 是:

<table id="analysis_reports_ct_fields_body" cellspacing="0" style="table-layout: fixed; width: 100%;">
<colgroup>
<tbody>
<tr class="GLKP2TGBFG" __gwt_subrow="0" __gwt_row="0">
<td class="GLKP2TGBEG GLKP2TGBGG GLKP2TGBHG">
<td class="GLKP2TGBEG GLKP2TGBGG">
<div __gwt_cell="cell-gwt-uid-695" style="outline-style:none;">
<span class="linkhover" title="Matches" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;empty-cells:show;display:block;color:#00A;cursor:pointer;">Matches</span>
</div>
</td>
<td class="GLKP2TGBEG GLKP2TGBGG">
<div __gwt_cell="cell-gwt-uid-696" style="outline-style:none;">
<span class="" title="manual" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;empty-cells:show;display:block;padding-right: 1px;">manual</span>
</div>
</td>
<td class="GLKP2TGBEG GLKP2TGBGG">
<div __gwt_cell="cell-gwt-uid-697" style="outline-style:none;">
<span class="linkhover block" title="view" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;empty-cells:show;display:block;color:#00A;cursor:pointer;">view</span>
</div>
</td>
<td class="GLKP2TGBEG GLKP2TGBGG">
<div __gwt_cell="cell-gwt-uid-698" style="outline-style:none;">
<span class="" title="" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;empty-cells:show;display:block;padding-right: 1px;" />
</div>
</td>
<td class="GLKP2TGBEG GLKP2TGBGG">
<div __gwt_cell="cell-gwt-uid-699" style="outline-style:none;">
<span class="" title="Source records" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;empty-cells:show;display:block;padding-right: 1px;">Source records</span>
</div>
</td>
<td class="GLKP2TGBEG GLKP2TGBGG">
<div __gwt_cell="cell-gwt-uid-700" style="outline-style:none;">
<span class="" title="29/10/2015 14:47:21" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;empty-cells:show;display:block;padding-right: 1px;">29/10/2015 14:47:21</span>
</div>
</td>
<td class="GLKP2TGBEG GLKP2TGBGG">
<div __gwt_cell="cell-gwt-uid-701" style="outline-style:none;">
<span class="block" title="" style="">498</span>
</div>
</td>
<td class="GLKP2TGBEG GLKP2TGBGG GLKP2TGBBH">
<div __gwt_cell="cell-gwt-uid-702" style="outline-style:none;">
<span class="" title="INFOSHARE\riaz.ladhani" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;empty-cells:show;display:block;padding-right: 1px;">Company\riaz.ladhani</span>
</div>
</td>
</tr>
<tr class="GLKP2TGBEH" __gwt_subrow="0" __gwt_row="1">
</tbody>
</table>

如果我执行以下 XPATH,表格的很多部分都会突出显示

//table[@id="analysis_reports_ct_fields_body"]//span[contains(text(), "Matches")]//ancestor::div

我能否以某种方式使用 ancestor 来到达第 3 列?

如果我尝试//descendant::* 这不会突出显示任何内容。我认为后代应该下树,祖先上树

//table[@id="analysis_reports_ct_fields_body"]//span[contains(text(), "Matches")]//descendant::*

我的方法将接受一个名为 Name 的参数(这是表格的第 1 列,文本“Matches”在其中),然后我想从这里找到表格的第 3 列。

谢谢,里亚兹

最佳答案

您可以使用以下 Xpath。

//table[@id='analysis_reports_ct_fields_body']//td[.//span[contains(text(), 'Matches')]]/following-sibling::td[2]

上面的 Xpath 在包含 span 的表中查找 td 标签,其中包含文本 Matches 并导航到它的第二个兄弟(列在索引 3)。这个 Xpath 消除了在 DOM 中回溯的需要。

关于css - 使用 XPATH 的 Selenium Webdriver Python 从 html 表的第 1 列中找到文本我如何转到第 3 列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33418499/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com