I have tried to select radio button in selenium python using by_id, by_name but getting error message as:
selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"css selector","selector":".radio_1"}
(Session info: chrome=76.0.3809.100)
I have tried element_by_id()
, element_by_name()
import selenium
from selenium import webdriver
driver = webdriver.Chrome()
driver.get('https://iiiindia.org.in/app#/auth')
aa= driver.find_element_by_id('radio_1').click()
enter code here