我有這樣的HTML選擇單選按鈕中的硒的webdriver [C#]
<div class="Radio">
<label>
<input class id="checkbox" name="category" type="radio" value="1">
<strong> TONY STARK </strong>
</label>
<label>
<input class id="checkbox" name="category" type="radio" value="2">
<strong> IRON MAN </strong>
</label>
<label>
<input class id="checkbox" name="category" type="radio" value="3">
<strong> ROBERT DOWNEY </strong>
</label>
我需要基於TONY STARK
,IRON MAN
,ROBERT DOWNEY
作爲用戶並將其作爲柔性參數
I選擇單選按鈕嘗試過,但任何其他簡單的方法肯定會幫助我!
driver.FindElement(By.Id("checkbox"));
for(WebElement radiobutton: radiobuttons)
{
if(radiobutton.getAttribute("value").equals("TONY STARK"))
radiobutton.click();
}
太棒了,完成了!所以,@沙拉布,我如何通過**'value' **找到文本? – cashanzlo
我很抱歉,但我不明白你在問什麼?你想通過哪個值找到文本? –