在Selenium Webdriver [c#]中选择单选按钮

本文关键字:选择 单选按钮 Selenium Webdriver | 更新日期: 2023-09-27 18:01:58

我有这个HTML

<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选择单选按钮

我试过这个,但任何其他简单的方法肯定会帮助我!

driver.FindElement(By.Id("checkbox"));
for(WebElement radiobutton: radiobuttons)
{ 
  if(radiobutton.getAttribute("value").equals("TONY STARK"))
  radiobutton.click();
}

在Selenium Webdriver [c#]中选择单选按钮

您应该尝试使用Xpath获得单个单选按钮,并避免循环如下:-

string Xpath = ".//input[following-sibling::strong[contains(.,'TONY STARK')]]";

string Xpath = ".//label[contains(.,'TONY STARK')]/input";

使用以下任意一个Xpath来查找单选按钮:

var radio = driver.FindElement(By.Xpath(Xpath));
radio.Click();

可以使用xpath。试试下面的xpath .//label[contains(text(),'TONY STARK')]/input[@id='checbox']

从现在开始创建一个类来封装无线电:

public class RadioButtons
{
    public RadioButtons(IWebDriver driver, ReadOnlyCollection<IWebElement> webElements)
    { 
        Driver = driver;
        WebElements = webElements;
    }
    protected IWebDriver Driver { get; }
    protected ReadOnlyCollection<IWebElement> WebElements { get; }
    public void SelectValue(String value)
    {
        WebElements.Single(we => we.GetAttribute("value") == value).Click();
    }
}

那么你可以这样使用:

RadioButtons categories = new RadioButtons(Driver, driver.FindElements(By.Name("category")));
categories.SelectValue("TONY STARK");

我有另一个解决方案:

public void RadioButtonClickByNameAndValue(string name, string val)
        {
            ScreenComponent.Wait.WaitVisibleElement(By.Name(name));
            ScreenComponent.Script.ExecuteJavaScriptCode($"$('[name={name}][value={val}]').click();");
        }
  • 在另一个类中,我写了我想要点击的值在另一个类中,我写了元素是什么

  • 在我的例子中,单选选项的值是"True"answers"False"

使用索引

的XPath标识单选按钮
IWebElement radioButton = driver.FindElement(By.XPath("//*[@type='radio'][1]");
radioButton.Click();

地点:

星号*表示通配符

[1]是单选按钮选项("TONY STARK")的位置