Example #1
0
 public void Execute(Arguments arguments)
 {
     try
     {
         IEWrapper ieWrapper = IEManager.CurrentIE;
         ieWrapper.WaitForLoad((int)arguments.Timeout.Value.TotalMilliseconds / 1000);
     }
     catch (Exception ex)
     {
         throw new ApplicationException($"Problem occured while waiting for page to complete. Message: {ex.Message}", ex);
     }
 }