I need to click a radio button, but the page does not respond
I use the following: myField = driver.FindElement(By.Id("payment:payRadio:0")); myField.Click();
I get the following error "element not interactable" I assume I need someway to execute javascript
<input id="payment:payRadio:0" name="payment:payRadio" type="radio" value="1" onchange="PrimeFaces.ab({s:"payment:payRadio",e:"valueChange",f:"payment",p:"payment:payRadio",u:"payment:payOptions"});" />
What do I need to do to fire up the onchange event?