While creating a test for an element on the page, I encountered an issue. Everytime I utilize the command pageObject.click("@MyElement"), there are instances where it produces this error message:
Element <i class="...">...</i> is not clickable at point (25, 299). Other element would receive the click: <div class =...></div>
I attempted to resolve this by using pageObject.waitForElementVisible("@selector") without success. It's puzzling why this problem arises intermittently as the tests sometimes pass without any issues. Any suggestions or insights?