HI, I am new to webBrowser tool in C#.
If i use this code to navigate, and get the page source.
Webbrowser1.Navigate("http://www.google.com");
HtmlElement he = Webbrowser1.Document.Body;
string pagesource = he.InnerHtml;
But i am not getting the webbrowser fully loaded and i am not getting the full pagecontent.
Help me?