Search⌘ K

Working with Radio Buttons

Explore how to select radio buttons by ID or name, handle radio groups, and assert selections in Selenium WebDriver with Node.js. Understand why clearing a selected radio button isn't supported and learn practical methods to manage radio button interactions in automated tests.

Select a radio button by ID

Most of the time, we can use the ID of the radio button to click it.

driver.findElement(By.id("radio_female")).click();

Select a radio button by name

Another less efficient way of selecting a radio button is to use its name:

driver.findElement(By.xpath("//input[@name='gender' and @value='female']")).click();
driver.sleep(200);
driver.findElement(By.xpath("//input[@name='ge
...