I have a 'Next' button on every page of the web application under test. On the first page of the form I can select the Next element and click, in the second page, selecting and clicking the same element thrown an error:
-> error: Unexpected error. Element is not clickable at point (1007.5, 244.14999389648438). Other element would receive the click:
This is the HTML for the element: div class="submitarea" input class="back-button btn" type="button" value ="Back"> input class="trigger-next-button btn btn-primary" type="button" value ="Next"> input class="next-button btn btn-primary" type="button" value ="Next"> style="display: none;" /div>
This is the code to click the button:
var nextBTN = testhelper.FireFoxBrowser.FindElement(By.ClassName("trigger-next-button"));
nextBTN.Click();