How to use XClick to click an exact X,Y coordinate on a web page?

I am trying to use XClick to click an X,Y coordinate from a webpage and cannot find any decent explanation as to how to do it. I have been using this Macro builder for about 2 days now but am well versed in data mining and cleansing.

I was told that this piece of code would work:

XClick | ${yourX},${yourY}

Any advice would be greatly appreciated :slight_smile:

Yeah, Iā€™m having the same problem.

XClick | x,y is correct. You will need to find out your x,y with a different program. I use MPos MPos - Mouse Position download | SourceForge.net (also on Chololatey) which is portable and open source.

use visual assert to locate an element or simply store the values found with Mouse Position Tracker tool:

{
  "Command": "store",
  "Target": "648",
  "Value": "!imagey"
},
{
  "Command": "store",
  "Target": "344",
  "Value": "!imagex"
},
{
  "Command": "executeScript_Sandbox",
  "Target": "return ${!imagex}",
  "Value": "x1"
},
{
  "Command": "executeScript_Sandbox",
  "Target": "return ${!imagey}",
  "Value": "y1"
},
{
  "Command": "XClick",
  "Target": "${x1},${y1}",
  "Value": ""
}