Hi,
Thank you for your reply. I have tried to use QueueScriptCall but it didn´t work. This is an example what I want to do:
1. Go to
www.myWeb.com (webView1.Url = "www.myWeb.com")
String script1 = "document.getElementsByTag('a')[0].click();";
String script2 = "alert(document.title)";
2. On event webView1_LoadCompleted:
webView1.QueueScriptCall (script1);
webView1.QueueScriptCall (script2);
How can I get the title of the 2nd document after the event click? Thank you in advance.