Selenium Click Capturing
If you’ve worked with Selenium for any length of time you’ll have encountered a test where Selenium occassionally errors out with:
Element is not clickable at point (x, x). Other element would receive the click
In my experience with Selenium, I’ve found the click capturing to be one of the more finicky processes. Let’s take a look at what’s happening.
Why this happens
There are a couple of reasons that another element is recieving a mis-intentioned click. One is that the test is legitimately failing. That is, if a user were to try to click on the jQuery element, another element (like a menu) is over the intended target, obscuring it in some way.
With tests that are failing sporadically, especially if the click happens soon after page load, there may be another mechanic at work.
In our tests, when a page was first loading, Selenium would find a button to click and in the time between when the button coordinates were located and the mouse was clicked, CSS reflowing caused the position of the button to be relocated.
Possible (python selenium) Solutions
Use jQuery to click
If you are using jQuery in your project you can leverage the jQuery click method to click on the button.
Wait until it’s clickable
If you prefer to use the UI (which, after all, is how your end user will be accessing the element), you have to be a little more clever.
One option is that you can wait until the UI stops moving as demonstrated in code below:
elaborate click function
In our integration tests we use a combination of the two methodologies above creating an elaborate click function that we use instead of the simple click()
provided by selenium. This has drastically cut down the flakeyness of our tests.
Other reasons click() may not work
Make sure the middle is clickable
In selenium, the click()
function clicks on the middle of an element. If your element is unclickable at that point you’re going to have a problem.
Make sure the window containing the clicked element is in front
Sometimes when you’re not looking the window you are trying to interact with will be backgrounded. Check out this article on foregrounding the window- Working with Multiple Windows