com.assertthat.selenium_shutterbug.utils.web.ElementOutsideViewportException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-shutterbug Show documentation
Show all versions of selenium-shutterbug Show documentation
Utility library to create customized screenshots using Selenium WebDriver and Java AWT
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);
}
}