When clicking a radio button, a new popup window opens and Selenium is unable to locate any elements from the new popup window. How do I switch Selenium to the new popup window, or extract the URL of the popup window?
print(driver.current_url)
retrieves the URL of the old tab and not the popup window.
print(driver.title)
prints the title of the old tab and not the popup window.
Thanks in advance.