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
while (true) {//ie is the WebBrowser object if (ie.ReadyState == tagREADYSTATE.READYSTATE_COMPLETE) { break; } Thread.Sleep(500); }
I used this way to wait untill the page loads.