Executing the following code in Chrome does not work:
ActiveBrowser.Actions.InvokeScript("document.getElementById('elemenID').click()");
the behavior is the same with the following workarounds:
Element.InvokeEvent(ScriptEventType.OnClick);
Element.Click();
More details are provided in the internal description.