如何使用 Selenium 根据值查找一个单选按钮元素?


我们可以使用 Selenium webdriver 根据值查找一个单选按钮元素。html 文档中的单选按钮有一个标记名称 input,并且它的类型属性设置为 radio。通过在识别出单选按钮后使用 click() 方法,可以选择该单选按钮。

让我们来看看单选按钮的 html 代码。为了根据值属性识别它,我们必须使用 xpath 或 css 定位器。

示例

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import java.util.concurrent.TimeUnit;

public class RadioButnVal{
   public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver","C:\Users\ghs6kor\Desktop\Java\chromedriver.exe");
      WebDriver driver = new ChromeDriver();
      String url="https://tutorialspoint.com/selenium/selenium_automation_practice.htm";
      driver.get(url);
      driver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS);
      // identify element with value
      WebElement l=driver.findElement(By.cssSelector("input[value='3']"));
      //select radio button with click()
      l.click();
      driver.quit();
   }
}

输出

更新时间: 18-9-2020

3K+ 浏览量

开启你的职业生涯 之路

完成课程获取认证

立即开始
广告