Currently, I am running a selenium test on a remote server in headless mode using the chrome driver. However, when trying to click on a button with the following step, the button does not get clicked.
Below is the test step attempting to click the element:
action.moveToElement(element).click().build().perform();
Here is the HTML of the button:
<button class="icon-btn" data-uk-tooltip="" data-ember-action="90"><i class="us -icon-hover us-icon-plus-circle"></i></button>
Can anyone provide insight into why the button is not being clicked by the test step in headless mode? Any ideas or suggestions are greatly appreciated.