When I inspect the code of the button it brings me to this section:
<input type="radio" name="chosen" value="UniqueNameExample">
Trying to find element within this that I am able to click(). Using the value results in element not interactable. both the type and name repeat throughout page. Button is loaded and clickable by cursor by time code is ran.
Code I am currently trying:
time.sleep(3)
action19 = driver.find_element(By.XPATH, "//input[@value='UniqueNameExample']")
action19.click()
Also tried:
action19 = driver.find_element(By.XPATH, "//input[@type='radio'][@name='chosen'][@value='UnquieNameExample']")