Is it possible to deselect a radio button using Selenium?
If you don't know what selenium is visit the site here: Selenium
I tried double clicking on the radio button using Selenium but that doesn't work:
WebElement select = driver.findElement(By.xpath("//td[1]/input[1]"));
select.click();
select.click();
Using selenium to reload the page does not work as the checked attribute is present in the radio tag.