ElementClickInterceptedException: element click intercepted:

ok, the answer is in error message – “Other element would receive the click: …” I had the same problem when I just started using selenium, couldn’t figure out what’s the problem. “Other element would receive the click: …” means there is other element above(overlapping) your element(pop up window, page is grayed out(disabled while loading, Some JS running)), so when Selenium trying to click on your element its actually clicking on that blocking element. Selenium is running really fast and clicking before its become clickable, that’s why u are not able to click on it – “when I run that specific line in python console, it is working” Try to click after time.sleep() 5-10 sec. If this is the case then you can use wait or add condition before find your element to check that element that prevent from clicking on you element is not there then u click on your element.

Leave a Comment