I am using this code:
//I store the website urls in mylist
list<string> mylist=new list<string>();
foreach(string webname in mylist)
{
wbmain.navigate(webname);
}
But there is a problem in the code is the wbmain.navigate the first url and doesn't wait for first url to open and it opens second ..........and it shows the last url.
Finally I see the last page.
How can I if check the first url is opened and wait for 15 sec and open the second page?