Пример #1
0
        /// <summary>
        /// Adds a description to the Description textbox, clicks Save Changes, then clicks the Mark Complete button
        /// </summary>
        private void AddDescriptionAndMarkMilestoneComplete()
        {
            DescriptionTxt.SendKeys("wsefwefwefwewe");
            this.WaitUntilAll(Criteria.PERTraineePage.DescriptionSaveChangesButtonVisible);

            ClickAndWait(DescriptionSaveChangesBtn);
            Thread.Sleep(0200);

            ClickAndWait(MarkCompleteBtn);
        }
Пример #2
0
        /// <summary>
        /// Adds a description to the Description textbox, clicks Save Changes, then clicks the Mark Complete button
        /// </summary>
        private void AddDescriptionAndSubmitMilestone(string clinicalSupervisorFullName)
        {
            DescriptionTxt.SendKeys("wsefwefwefwewe");
            this.WaitUntilAll(Criteria.DiplomaTraineePage.DescriptionSaveChangesButtonVisible);

            ClickAndWait(DescriptionSaveChangesBtn);
            Thread.Sleep(0400);

            ClickAndWait(SubmitBtn);

            SubmitMilestoneFormSelectReviewerSelElem.SelectByText(clinicalSupervisorFullName);

            ClickAndWait(SubmitMilestoneFormSubmitBtn);
        }