public void ClickLoadSavedBuildButton()
 {
     DriverActions.waitForElementVisibleAndEnabled(BY_LOAD_SAVED_BUTTON);
     DriverActions.waitForElementToBeEnabled(BY_LOAD_SAVED_BUTTON);
     DriverActions.WaitForCanvassToComplete();
     DriverActions.clickElement(BY_LOAD_SAVED_BUTTON);
 }
 public void GetToBuildPage()
 {
     DriverActions.waitForElementToBeEnabled(BY_FULL_SCREEN_BUTTON);
     DriverActions.waitForElementToBeEnabled(BY_FLICKITY_SLIDER_BUTTON);
     DriverActions.waitForAjaxRequestToComplete();
     WebDriverExtensions.WaitForPageLoaded(Driver);
     Assert.IsTrue((Driver.Url).Contains("build"));
 }
 public void WaitForModalToDisplay()
 {
     DriverActions.waitForElementToBeEnabled(BY_PURPOSE_PROMPT_MODAL);
 }
 public void ClickBuildSummaryButton()
 {
     DriverActions.waitForElementToBeEnabled(BY_BUILD_SUMMARY_BUTTON);
     DriverActions.clickElement(BY_BUILD_SUMMARY_BUTTON);
 }
 public void ClickIamFinishedButtonOld()
 {
     DriverActions.waitForElementToBeEnabled(BY_FINISHED_OLD_BUTTON);
     DriverActions.clickElement(BY_FINISHED_OLD_BUTTON);
 }
 public void ClickIamFiniShedButtonNextSteps()
 {
     DriverActions.waitForElementToBeEnabled(BY_NEXT_STEPS_FINISHED_BUTTON);
     DriverActions.clickElement(BY_NEXT_STEPS_FINISHED_BUTTON);
 }
 public void WaitForBuildQuotePgeToLoad()
 {
     WebDriverExtensions.WaitForPageLoaded(Driver);
     DriverActions.waitForElementToBeEnabled(BY_FIRST_NAME_FIELD);
 }
Example #8
0
 public void WaitForBuildQuotePageToLoad()
 {
     DriverActions.waitForElementToBeEnabled(BY_FIRST_NAME_FIELD);
 }