0

需要找到以下标签的正则表达式

<div class="field radio-container valid" data-editable="true" data-type="RadioGroup" data-mandatory="true" name="gender">
  <label>
    <input type="radio" value="1" name="gender">
      gender
    </input>
  </label>
</div>

使用 xpath 检查器尝试以下操作时不起作用:name(//label/input[text() = \"" + label + "\"]/@name)

4

2 回答 2

1

这应该适合你:

//input[text()=\"gender\"] 
于 2013-04-30T18:23:52.337 回答
0
click > xpath=(//input[@type='checkbox'])[position()=1]

选择页面中的第一个单选按钮

click > xpath=(//input[@type='checkbox'])[position()=2]

选择另一个,依此类推

选择随机和任何单选按钮对您有很大帮助

于 2013-05-01T18:45:26.903 回答