Example #1
0
 /// <summary>
 /// Verifies and classify the trial.
 /// </summary>
 /// <param name="contextTrialTitle">The context trial title.</param>
 public void VerifyAndClassifyTheTrial(string contextTrialTitle)
 {
     Query.Clear();
     Query.SendKeys(contextTrialTitle);
     PageHelper.WaitForElement(Driver, SearchButton).Click();
     PageHelper.WaitForElement(Driver, Load_DataTable);
     EditTrials.Click();
     Verified.Click();
     VerifyComment.SendKeys("Verified by Automated Regression Test");
     ClassifyTheTrial();
 }
Example #2
0
 /// <summary>
 /// Verifies the trial.
 /// </summary>
 public void VerifyTheTrial()
 {
     Verified.Click();
     VerifyComment.SendKeys("Verified by Automated Regression Test");
     SaveVerifyButton.Click();
 }