J
J
JEYn702014-03-24 14:52:11
Visual Basic
JEYn70, 2014-03-24 14:52:11

How to programmatically fill popup windows in VB.NET when using Awesomium?

For example, when you open the site, an authorization window appears, the login and password are known to me, how can I competently authorize programmatically?
Popup example:
yadi.sk/d/5nfjGQXyL7YDv

Answer the question

In order to leave comments, you need to log in

1 answer(s)
J
JEYn70, 2014-04-02
@JEYn70

Thank you figured it out.

Private Sub WebControl1_LoginRequest(sender As Object, e As Awesomium.Core.LoginRequestEventArgs) Handles WebControl1.LoginRequest
        e.Username = ""
        e.Password = ""
        e.Handled = Awesomium.Core.EventHandling.Modal
        e.Cancel = False
    End Sub

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question