/// <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(); }
/// <summary> /// Edits an existing trial. /// </summary> public void EditanExistingTrial() { GetanExistingTrialData(); EditTrials.Click(); }