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

com.assertthat.selenium_shutterbug.utils.web.ElementOutsideViewportException Maven / Gradle / Ivy

Go to download

Utility library to create customized screenshots using Selenium WebDriver and Java AWT

There is a newer version: 1.6
Show newest version
package com.assertthat.selenium_shutterbug.utils.web;

/**
 * Created by Glib_Briia on 10/07/2016.
 */
public class ElementOutsideViewportException extends RuntimeException {

    public ElementOutsideViewportException() {
        super();
    }

    public ElementOutsideViewportException(String message) {
        super(message);
    }

    public ElementOutsideViewportException(Throwable cause) {
        super(cause);
    }

    public ElementOutsideViewportException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy