com.github.automatedowl.tools.pages.BlankPage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chromedriver-js-errors-collector-junit Show documentation
Show all versions of chromedriver-js-errors-collector-junit Show documentation
Java library which allows to easily collect JS errors received in Chromedriver session,
using annotations on test methods.
package com.github.automatedowl.tools.pages;
import org.openqa.selenium.WebDriver;
public class BlankPage {
private static final String BLANK_PAGE_URL =
"http://this-page-intentionally-left-blank.org";
public void navigateToPage(WebDriver driver) {
driver.get(BLANK_PAGE_URL);
}
}