I'm trying to click the "Easy Apply button" on the linkedin jobs search page (the beta variable)
alpha = driver.find_element_by_xpath("//button[.//span='Expand LinkedIn Features facet']")
alpha.click()
time.sleep(2)
beta = driver.find_element_by_xpath("//input[@type='checkbox']")
time.sleep(4)
beta.click()
With this code I got the following error.
selenium.common.exceptions.WebDriverException: Message: unknown error: Element <input type="checkbox" value="f_AL" name="linkedin-features-group" id="ember1311" class="search-s-facet-value__input"> is not clickable at point (322, 146). Other element would receive the click: <div id="ember2440" class="pt3 ember-view">...</div>
I tried this as, well as trying to go by id(which changes every time i run the script so that didn't end up working).