I get the following error when trying to click on a radioButton:
Cannot click on element.
My code is:
public static IWebDriver WebDriver = new InternetExplorerDriver();
var radioButton = WebDriver.FindElement(By.XPath("//input[@name='" +
elementName + "' and @value='" + value + "']"));
radioButton.Click();
What are the value and elementName?
Try to validate your XPath with one of the many Firefox XPath extensions.