I'm using the following code to identify the Next button, but Selenium does not find it
driver = webdriver.Firefox(service=FirefoxService(GeckoDriverManager().install()))
driver.implicitly_wait(10)
driver.get(url)
python_button = driver.find_element(By.CLASS_NAME, "nav next rndBtn ui_button primary taLnk")
python_button.click()
The error is the following:
selenium.common.exceptions.NoSuchElementException: Message: Unable to locate element: .nav next rndBtn ui_button primary taLnk
Snapshot of the HTML: