示例#1
0
 public virtual void WaitLoaded()
 {
     try
     {
         Wait.Until(IsLoaded, LoadPageTimeout);
     }
     catch (WebDriverTimeoutException e)
     {
         Log.Error($"Could not load page after {LoadPageTimeout} of waiting.");
         Go.Refresh();
         Wait.Until(IsLoaded, LoadPageTimeout);
     }
 }