-1

Friends I want to do this : When I enter the website automatically click a point(x,y coordinates). I've been searching the net for two months, but I can't find it. Please help me?

Abhilash Ravindran C K
  • 1,818
  • 2
  • 13
  • 22
Sapphire
  • 9
  • 3
  • 3
    Possible duplicate of [How to simulate a click by using x,y coordinates in JavaScript?](https://stackoverflow.com/questions/3277369/how-to-simulate-a-click-by-using-x-y-coordinates-in-javascript) – etopylight Mar 07 '18 at 08:24

1 Answers1

0

Try below java script code, where x, y are coordinates,

document.elementFromPoint(x, y).click();
programtreasures
  • 4,250
  • 1
  • 10
  • 29