Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

fill form automatically

Tags:

c#

.net

I need to create c# code to go to site, fill in form submit record.

I have tried using seleniumhq but this creates tests..I need more of a script i can run once to help me register some users for my site

any ideas??

like image 761
WingMan20-10 Avatar asked Jul 16 '26 12:07

WingMan20-10


1 Answers

You can create c# code that posts data to the form page for the site that you are trying to register the people for. Otherwise depending on the browser you could use something like iMacros to automate the form filling. The other answers are also correct. Unless it is a site you control none of these methods will work if the site uses captcha or other methods to prevent automatic form filling.

Edit: Something like http://geekswithblogs.net/rakker/archive/2006/04/21/76044.aspx would be a good start.

like image 56
Matt Phillips Avatar answered Jul 19 '26 01:07

Matt Phillips