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?
Asked
Active
Viewed 77 times
-1
-
3Possible 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 Answers
0
Try below java script code, where x, y are coordinates,
document.elementFromPoint(x, y).click();

programtreasures
- 4,250
- 1
- 10
- 29