I am working in Python 3 and using Selenium to click on a radio button in a browser. I am able to locate the Radio Element to be clicked. However, when I do Element.click()
, it gives me an error:
Message: unknown error: Element <Description of Element> is not clickable at point (340, 190).
Other element would receive the click: <Description of some other element>.
The radio element, as it appears in browser is:
<input data-val="true" data-val-required="Required" id="Promoter" name="Type" onchange="Checkboxck('Promoter')" type="radio" value="Promoter" />
My code to find this radio element and click on it is:
Registered_Project_RadioButton = browser.find_element_by_id("Promoter")
Registered_Project_RadioButton.click()