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

com.clarolab.selenium.pages.exception.InvalidPageUrlException Maven / Gradle / Ivy

Go to download

Framework for automated testing using Selenium. Provides easy configuration of WebDrivers with BrowserFactory. Provides a Page abstraction.

The newest version!
package com.clarolab.selenium.pages.exception;

public class InvalidPageUrlException extends RuntimeException {
    public InvalidPageUrlException(String msg) {
        super(msg);
    }

    public InvalidPageUrlException(String msg, Exception e) {
        super(msg, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy