Exemplo n.º 1
0
 /// <summary>
 /// Classifies the verified trial as portfolio.
 /// </summary>
 public void ClassifyTheVerifiedTrialAsPortfolio()
 {
     PageHelper.WaitForElement(Driver, Classified).Click();
     PageHelper.SelectValueFromDropdown(ClassificationType, "Portfolio");
     PageHelper.PickRandomValueFromDropdown(PortfolioCategory);
     ClassificationComment.SendKeys("Classified Portfolio by Automated Regression Test");
     SaveClassification.Click();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Classifies the verified trial as non portfolio.
 /// </summary>
 public void ClassifyTheVerifiedTrialAsNonPortfolio()
 {
     PageHelper.WaitForElement(Driver, Classified).Click();
     PageHelper.SelectValueFromDropdown(ClassificationType, "Non-Portfolio");
     PortfolioExclusion.Click();
     PageHelper.PickRandomValueFromDropList(PortfolioExclusionResult);
     ClassificationComment.SendKeys("Classified Non-Portfolio by Automated Regression Test");
     SaveClassification.Click();
 }
Exemplo n.º 3
0
 /// <summary>
 /// Classifies the verified trial as in review.
 /// </summary>
 public void ClassifyTheVerifiedTrialAsInReview()
 {
     PageHelper.WaitForElement(Driver, ClassifyInReview).Click();
     ClassificationComment.SendKeys("Review needed by Automated Regression Test");
     SaveClassification.Click();
 }