Ejemplo n.º 1
0
 /// <summary>
 /// Disposes any error messages that occur and closes the driver
 /// </summary>
 public void TestCaseCleanup(UserMethods user)
 {
     WindowProcessHandler.DisposeErrorMessages();
     user.CloseDriver();
 }
Ejemplo n.º 2
0
 public void TestRunObjectCleanup()
 {
     WindowProcessHandler.CloseExtraDriverInstances();
     new SQLDataHandler().HandleDataExport(this);
 }
Ejemplo n.º 3
0
 /// <summary>
 ///Initializes values and closes any previous Intact instances
 /// </summary>
 public TestCaseObject()
 {
     WindowProcessHandler.CloseIntact();
     CreatedDate = DateTime.Now;
 }
Ejemplo n.º 4
0
 public DocumentCollect(WiniumMethods m, Actions action)
 {
     this.m      = m;
     this.action = action;
     handler     = new WindowProcessHandler();
 }