Why are elements not clickable?

Why are elements not clicable in Selenium Automation even there is no error on click event.

There are few possible reasons for this error in Selenium WebDriver.

  1. The element is not visible to click. This can be resolved by using Action and JavaScript Executor to click the element. 2.page is getting refreshed before it is look for the element. Add wait for Pageload will resolve this issue. In Some cases using SendKeys(Keys.Return) will help.
1 Like