@Override
  public LoginPage waitForElementsToLoad() {
    this.usernameInputField.setUnderlyingWebElement(
        driver.findVisibleElement(By.id(appProps.getELEMENT_ID_USERNAME_INPUT())));
    this.passwordInputField.setUnderlyingWebElement(
        driver.findVisibleElement(By.id(appProps.getELEMENT_ID_PASSWORD_INPUT())));
    this.submitButton.setUnderlyingWebElement(
        driver.findVisibleElement(By.id(appProps.getELEMENT_ID_SUBMIT_BUTTON())));

    return this;
  }