A1VBCode Forums

Submit Value To Html Textbox1 With Awesomium - Vb.Net


http://a1vbcode.com/vbforums/Topic32339.aspx

By carter2408 - 11/8/2015

Using this code to load the website



Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click

WebControl1.Source = New System.Uri("https://login.yahoo.com/config/login")





And this code to submit the value to html textbox1



Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click

WebControl1.ExecuteJavascript("document.getElementById('login-text').value=" + TextBox1.Text)



The textbox with id (login-text) work fine but the other one ( pass ) always get empty ?
By zack - 11/20/2015

Try using SendKeys.Send method to fill password box.



SendKeys.Send = ("YourPassword")