HtmlElement he;
bool found = false;
for(int i=0;i<20;i++)
{
he = instance.ActiveTab.FindElementByAttribute("Your data in parameters");
if(!he.IsVoid)
{
found = true; break;
}
System.Threading.Thread.Sleep(2000);
}
if (!found) throw new Exception("not found");