Handling RadioButtons in selenium

On a webpage, user can only selects one option from many of the limited group of options. In HTML we can represent a radio button with tag name “input” and attribute type=”radio”. Let’s see the code implementation package controls; import java.util.List; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; public class Radiobuttons { public static…