I am trying to automate login in LinkedIn with Python and Selenium.
Where I am stuck so far is on the Sign in
button. When I try to click it with
driver.find_element_by_xpath('//a[text()="Sign in"]').click()
I get an error:
selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element ... is not clickable at point (1273, 80). Other element would receive the click: ... (Session info: chrome=79.0.3945.130)
Tried also driver.find_element_by_xpath('//*[contains(concat( "", @class, "" ), concat( "", "nav__button-secondary", "" ))]').click()
which I generate by using SelectorGadget
extension for Google Chrome and got the same error as mentioned above...
As for my Chrome version it is : Version 79.0.3945.130 (Official Build) (64-bit)
same as my WebDriver version for Windows.