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

com.nordstrom.automation.selenium.exceptions.DriverNotAvailableException Maven / Gradle / Ivy

Go to download

Selenium3 Foundation is an automation framework designed to extend and enhance the capabilities provided by Selenium 3.0 (WebDriver).

There is a newer version: 1.0.4
Show newest version
package com.nordstrom.automation.selenium.exceptions;

import com.nordstrom.automation.selenium.core.TestBase;

/**
 * This exception is thrown by {@link TestBase#getDriver} when no driver is available.
 */
public class DriverNotAvailableException extends RuntimeException {

    private static final long serialVersionUID = 657965846077748022L;

    /**
     * Constructor for exception with default message.
     */
    public DriverNotAvailableException() {
        super("No driver was found in the current test context");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy