I\'m trying to create a program to clone multiple bugs at a time through the web interface of our defect tracking system. How can I wait before a page is completely loaded
This code was very helpful for me. Maybe it could be for you also
wb.Navigate(url); while(wb.ReadyState != WebBrowserReadyState.Complete) { Application.DoEvents(); } MessageBox.Show("Loaded");