I have a problem to find element "Next Button" and click that with Selenium in Python within the webpage
Code trials:
try:
driver.find_element(By.CSS_SELECTOR, ".artdeco-pagination__button--next").click()
except NoSuchElementException:
print("No Next button, skipped.")
Any help?