Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make a web bot? (or something)

Tags:

c#

.net

bots

I need to register to a site programmatically. I did it with VB6 (using the IE Web Browser component), but I don't know how to edit textboxes on a website using WebBrowser. I don't need to do it with Webbrowser, it's just that I know it can be done with it. I just need to insert a username, a password etc. using my program.

Thanks

like image 351
PythEch Avatar asked Oct 02 '09 11:10

PythEch


1 Answers

Also have a look at the Watin project: http://www.codeproject.com/KB/aspnet/WatiN.aspx

It's more used for web app testing, but for automating web forms it has great features out of the box.

For a more neutral solution you may also want to check out: http://seleniumhq.org/ Again it's a web app testing framework but it's useful for what you want.

HTH Alex

like image 113
Alex Duggleby Avatar answered Oct 25 '22 14:10

Alex Duggleby