I want to move the mouse in a certain position (0,0). After a previous click action I need in fact to move away the mouse from that position, as it's interfering with the next action I need to do.
I've found following Java code which is a perfect starting point but I'm not able to translate it into VBA and to adapt to my need.
Actions action = new Actions(webdriver);
WebElement we = webdriver.findElement(By.xpath("html/body/div[13]/ul/li[4]/a"));
action.moveToElement(we).moveToElement(webdriver.findElement(By.xpath("/expression-here"))).click().build().perform();
Sources:
How to perform mouseover function in Selenium WebDriver using Java?
https://www.guru99.com/keyboard-mouse-events-files-webdriver.html