I have selenium test running in a remote server in headless mode using chrome driver. Following step tries to click on a button but the button doesn't get clicked.
Below test step tries 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>
Any insight why in headless mode the button is not clicked by above test step? would appreciate any ideas.