I need some help with Selenium/PyCharm. After switching to a new PC, the code that used to work fine began to break when searching for a button and clicking on it. Interesting thing: problem arise only on this button, i would say even on redirection. if you skip this step, everything works perfectly.
driver.find_element(By.ID, "phone").send_keys("0991041337")
driver.find_element(By.NAME, "password").send_keys("Login123")
button_login = driver.find_element(By.ID, "submit-login").click()
time.sleep(1)
A screenshot of the error is here
I will be very grateful if someone can help me :)