web bot
-
Hi, i wanna make a bot, but i don´t know if it is possible to pass a value from a variable to a input text, through a WebBrowser. For example, use this bot to write a question in this site, the bot would be able to fill this message input! So, is it possible, and how can i do this using vb.net? thank you
-
Hi, i wanna make a bot, but i don´t know if it is possible to pass a value from a variable to a input text, through a WebBrowser. For example, use this bot to write a question in this site, the bot would be able to fill this message input! So, is it possible, and how can i do this using vb.net? thank you
ok, i think i solved it, i didn't had time to test it, but i found a code like this: webbrowser1.document.all.fieldname.value = TextBox1.Text update: the prewier code is just valid on vb6, for .net users the correct code is: WebBrowser1.Document.GetElementById("fieldnam").InnerText = TextBox1.Text
modified on Monday, April 5, 2010 4:00 PM