I want to auto click on this link on a website.
<a href="/wall/withdraw.php?processor=ppp">Withdraw</a>
Thanks!
I want to auto click on this link on a website.
<a href="/wall/withdraw.php?processor=ppp">Withdraw</a>
Thanks!
You can fire it's click()
method.
<a href="/wallet/withdraw.php?processor=ppp" id="foo">Withdraw</a>
document.getElementById("foo").click();
You'll need some way to select the element, I gave it an ID and used getElementById()