-4

I need a help creating a Java Script code for Browser console

That would auto click the Follow button or click on SVG icon

e.g. [https://www.zomato.com/users/anuradha-biswas-285812502/network] it should auto click on followers atonce or click all follow ( SVG icon) on page load.

Thanks in advance. I am newbie

Auto click script for followers.

ndc85430
  • 1,395
  • 3
  • 11
  • 17

1 Answers1

0

In the JS function called by body onload event, do the following:

document.getElementById("theIdOfTheFollowButton").click();

For an svg do the first answer here to make is clickable.

John Williams
  • 4,252
  • 2
  • 9
  • 18