All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.aoreshin.allure.webdriver.WebDriverPageObject Maven / Gradle / Ivy

There is a newer version: 83
Show newest version
package com.github.aoreshin.allure.webdriver;

import static org.junit.jupiter.api.Assertions.assertNotEquals;

import com.github.aoreshin.junit5.allure.steps.StepWrapperSteps;
import java.util.List;
import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.WebDriverWait;

/**
 * Parent class for all WebDriver page objects
 *
 * @param  - recursive generic type parameter
 */
public abstract class WebDriverPageObject>
    extends StepWrapperSteps {
  @SuppressWarnings("unused")
  private WebDriverPageObjectFactory pageObjectFactory;

  protected WebDriver driver;
  protected WebDriverWait driverWait;

  public final > D seePage(final Class pageClass) {
    assertNotEquals(this.getClass(), pageClass);
    return pageObjectFactory.createPageObject(pageClass);
  }

  protected void sendKeys(final String xpath, final CharSequence... value) {
    getWebElement(xpath).sendKeys(value);
  }

  protected void click(final String xpath) {
    getWebElement(xpath).click();
  }

  protected void clear(final String xpath) {
    getWebElement(xpath).clear();
  }

  protected WebElement getWebElement(final String xpath) {
    return driver.findElement(By.xpath(xpath));
  }

  protected List getWebElementList(final String xpath) {
    return driver.findElements(By.xpath(xpath));
  }

  protected void jsClick(String xpath) {
    jsClick(getWebElement(xpath));
  }

  protected void jsClick(WebElement webElement) {
    ((JavascriptExecutor) driver).executeScript("arguments[0].click();", webElement);
  }

  protected void scrollIntoView(WebElement webElement) {
    ((JavascriptExecutor) driver).executeScript("arguments[0].scrollIntoView(true);", webElement);
  }

  protected void scrollIntoView(String xpath) {
    scrollIntoView(getWebElement(xpath));
  }

  protected void waitUntilPageIsLoaded() {
    driverWait.until(
        webDriver ->
            (((JavascriptExecutor) webDriver)
                .executeScript("return document.readyState")
                .equals("complete")));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy