How can I make my browser bot click several things?

kytro360

Power Member
Joined
Jan 12, 2010
Messages
708
Reaction score
737
Alright so Im making a bot that goes to a site, automatically logs in and posts a article to the site.

I am using the webbrowser to make this.

How can I make the bot click on a link once Ive already logged in?

Also, how can I make the same bot do the same thing (login, then post) on multiple sites? Do I need a different webbrowser or...?
 
There's not a lot of wrappers that can handle clicking..

Also, are you talking about multithreading to do the same action at the same time with few bots or one instance at a time?
 
WebBrowser.Document.GetElementById("buttonID").InvokeMember("click")
 
Thanks guys but I since moved on to C# and figured this out :). Thanks for all the help though
 
Back
Top