I am currently trying to automate Job Applications on the indeed website using selenium.
My issue is I have tried selecting the element using the XPath, CSS selectors,Classname. The UI shows the continue button is to be clicked to move to the next page.
It still throws the exception that the element cannot be found.
This is the HTML code:
<button class="ia-continueButton ia-ContactInfo-continue css-vw73h2 e8ju0x51">
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="ifl-Spinner-title-470" class="css-qg4x0n e150lnaj2">
<title id="ifl-Spinner-title-470">loading</title>
<circle cx="50" cy="50" r="45" class="css-1s13iyj e150lnaj1"></circle>
<circle cx="50" cy="50" r="45" class="css-41looc e150lnaj0"></circle>
</svg>
<div style="visibility: visible;">Continue</div>
</button>
This is my selenium code selecting the button element to take me to the next page.
continue_send_key = driver.find_element(By.CSS_SELECTOR, "#ia-container > div > div.css-15aza98.eu4oa1w0 > div > main > div.css-15adxh0.e37uo190 > div.css-t4lkhd.eu4oa1w0 > div > div > div.ia-BasePage-footer.fs-unmask > div > button")
continue_send_key.click()
time.sleep(10)
This is the link to the indeed: https://m5.apply.indeed.com/beta/indeedapply/form/contact-info
Please help with suggestions to fix. The automation worked smoothly till this point.