I have been testing some code today and it has been working totally fine. It has now just stopped working, I haven't changed anything.
action.move_to_element(text_box)
action.click(text_box)
action.send_keys(index)
action.perform()
sleep(1)
driver.find_element_by_xpath('//*[@id="AC_tRes"]/li[1]').click()
sleep(10)
link = driver.find_element_by_link_text('Financials')
link.click()
This code enters a name into a search box and then goes to that page. It should then click on the Finance page.
It has been working totally fine. I haven't changed anything and now I get the following error:
selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element <a class="link3" href="foo" </a> is not clickable at point (505, 509)
But I don't understand why it would just stop when I haven't even edited the code.
https://www.marketscreener.com/MICROSOFT-CORPORATION-4835/
I land on this page and it should go to the Financial link. but it is sometimes working sometimes giving me the above error.