I currently have some Webdriver (java) code that I am attempting to convert to VBA. The code snippet is as follows:
WebElement pos1 = LiloTest.driver.findElement(By.id("autoAssocitionForm:categoryDetailCombinationId:23"));
JavascriptLibrary jsLib = new JavascriptLibrary();
jsLib.callEmbeddedSelenium(LiloTest.driver,"triggerMouseEventAt", pos1,"click", "0,0");
I am struggling to replicate the same functionality in VBA with the Selenium type library. I have experimented with the "ExecuteScript" method without much success. One of the issues I'm facing is the lack of visibility into any JavaScript while inspecting the page source for the specified element.
If anyone could offer guidance or assistance, it would be greatly welcomed.