I want to log in that website, but can't add my credentials.
The first part of my code is:
from selenium import webdriver
PATH = 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chromedriver.exe'
driver = webdriver.Chrome(PATH)
driver.maximize_window()
driver.get('https://glovoapp.com/ro/buc/store/kaufland-buc/')
login = driver.find_element_by_xpath('//*[@id="user-login"]')
login.click()
After that, tried using find_element_by_xpath()
and a few other methods, but none of them worked, as it either says "Unable to locate element" or "element not interactable". How can I do it? In previous examples I have followed I could find it with find_view_by_id()
but now I encounter some problems.