Programmatically triggers a click event on the specified HTML element.
The HTML element on which to simulate a click event.
MDN Documentation for HTMLElement.click()
// Get a button element by its IDconst buttonElement = ix.api.dom.getHtml("<ELEMENT-GUID>");// Click the buttonix.api.dom.click(buttonElement); Copy
// Get a button element by its IDconst buttonElement = ix.api.dom.getHtml("<ELEMENT-GUID>");// Click the buttonix.api.dom.click(buttonElement);
Programmatically triggers a click event on the specified HTML element.