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 ClickAcctLoggedInIcon()
 {
     DriverActions.waitForAjaxRequestToComplete();
     WebDriverExtensions.WaitForPageLoaded(Driver);
     DriverActions.WaitForCanvassToComplete();
     DriverActions.waitForElementVisibleAndEnabled(BY_ACCT_LOGGED_IN_ICON);
     DriverActions.clickElement(BY_ACCT_LOGGED_IN_ICON);
 }
 public void WaitForBuildPageToLoad()
 {
     WebDriverExtensions.WaitForPageLoaded(Driver);
     DriverActions.WaitForCanvassToComplete();
     DriverActions.waitForElementVisibleAndEnabled(BY_FULL_SCREEN_BUTTON);
 }
 public void ClickLoginCTA()
 {
     DriverActions.clickElement(BY_LOG_IN_BUTTON);
     DriverActions.WaitForCanvassToComplete();
 }
 public void WaitForAccessoriesPageToLoad()
 {
     WebDriverExtensions.WaitForPageLoaded(Driver);
     DriverActions.waitForElementVisibleAndEnabled(BY_ACCESSORIES_CATEGORIES);
     DriverActions.WaitForCanvassToComplete();
 }