gpt4 book ai didi

testing - xpath 在 tr 中找到两个元素

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

如果我有

<tr>
<td> John </td>
<td> Smith </td>
</tr>
<tr>
<td> John </td>
<td> Bloggs </td>
</tr>

要使用 xpath 查找 John,我可以使用:

//tr[td//text()[contains(., 'John')]]"

但是我想找到包含 John 和 Smith 元素的行?

//tr[td//text()[contains(., 'John')] && td//text()[contains(., 'Smith')]]"

最佳答案

我会使用 //tr[td[contains(., 'John')] 和 td[contains(., 'Smith')]]

关于testing - xpath 在 tr 中找到两个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24955026/

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