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

com.github.automatedowl.tools.pages.BlankPage Maven / Gradle / Ivy

Go to download

Java library which allows to easily collect JS errors received in Chromedriver session, using annotations on test methods.

There is a newer version: 1.0.4
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy