Working with Radio Groups
Learn how to find and interact with a radio group using Selenium.
We'll cover the following...
Iterate radio buttons in a radio group
So far, we have been focusing on identifying a specific web control by using one type of
locator, i.e., findElement
. We will now use another type of locator called findElements
.
findElement
is different from findElements
in a sense because findElement
returns one matched control, ...