gpt4 book ai didi

html - Xpath 根据以下文本选择 Input Radio

转载 作者:行者123 更新时间:2023-11-28 01:43:56 25 4
gpt4 key购买 nike

我有这个 HTML 代码:

<input type="radio" class="inputs-highlight" name="country"><h2>Russia</h2>
<input type="radio" class="inputs-highlight" name="country"><h2>USA</h2>
<input type="radio" class="inputs-highlight" name="country"><h2>Other</h2>

我正在尝试选择文本等于“其他”的输入单选框。

我试过:

 .//input[./@type = 'radio']/following::*[text() = "Other"]

但这是返回 H2 元素而不是 Input Radio 元素。

还有这个:

 //input[@type='radio' and following-sibling::text() = 'Other']

没有结果

提前感谢您的帮助。

最佳答案

@helderdarocha 的解决方案仅适用于搜索文本位于“h2”标签中。一个更灵活的解决方案,它不关心以下文本是如何“打包”的:

//input[@type='radio'][following-sibling::node()[position() = 1 and normalize-space(.) = 'Other']]

在以下人员的帮助下:http://jkotests.wordpress.com/2013/02/08/getting-a-checkbox-by-its-adjacent-text-node/

关于html - Xpath 根据以下文本选择 Input Radio,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23973081/

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