Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/selenium/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 使用WebDriver查找和使用单选按钮_Html_Selenium_Selenium Webdriver_Webdriver - Fatal编程技术网

Html 使用WebDriver查找和使用单选按钮

Html 使用WebDriver查找和使用单选按钮,html,selenium,selenium-webdriver,webdriver,Html,Selenium,Selenium Webdriver,Webdriver,给定以下HTML: <td> <input type="hidden" value="" name="chosenstepid"> <input type="radio" value="1355816110363,1324313696089,full" name="ChooseStep"> Click here to send forward <br> <input type="hidden" value="432000000" name=

给定以下HTML:

<td>
<input type="hidden" value="" name="chosenstepid">
<input type="radio" value="1355816110363,1324313696089,full" name="ChooseStep">
Click here to send forward 
<br>
<input type="hidden" value="432000000" name="Step0">
<input type="radio" value="1355816110363,1324312435553,full" name="ChooseStep">
Click here to send backwards
<br>
<input type="hidden" value="432000000" name="Step1">
</td>

单击此处转发

单击此处向后发送

考虑到每次重新加载页面时“value”属性似乎都会改变,选择相应按钮的最佳方式是什么

您可以使用xpath和
以下同级

//input[@name='chosenstepid']/following-sibling::input[1]
//input[@name='Step0']/following-sibling::input[1]