Did a workaround with executeScript | "code below" | coords
function getElementByXpath(path) {
return document.evaluate(path, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
}
a = getElementByXpath(“/html/body/main/div/div/div[1]/form/div[4]/label[2]/img”);
b = a.getBoundingClientRect();
x = b.x + b.width/2;
y = b.y + b.height/2 + 70; "70 is the height in pixels of the navigate bar of chromereturn x.toString() + “,” + y.toString();
and XClick | ${coords}