I am unable to click on the “easy apply” button on any job page with an “easy apply” option on linkedin.
After navigating to any of the job pages using selenium driver, I have tried the following using both the text and full xpath:
WebDriverWait(driver,15).until(EC.element_to_be_clickable((By.XPATH,"//span[normalize-space(.)='Easy Apply']"))).click()
and
WebDriverWait(driver,15).until(EC.element_to_be_clickable((By.XPATH,"/html/body/div[5]/div[3]/div[2]/div/div/main/div/div[1]/div/div[1]/div/div/div[1]/div[6]/div/div/div/button"))).click()
For both, I get selenium.common.exceptions.TimeoutException
Any way to solve this?