com.slickqa.webdriver.OutputFileSupport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slick-webdriver-java Show documentation
Show all versions of slick-webdriver-java Show documentation
This is a wrapper and utilities for using webdriver / selenium in Java.
package com.slickqa.webdriver;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.OutputStream;
/**
* You must implement this to get support for saving screenshots and other files from
* the webdriver wrapper.
*
* @author jcorbett
*/
public interface OutputFileSupport
{
public File getOutputFile(String filename);
public OutputStream getOutputStream(String filename) throws FileNotFoundException;
public File getSessionOutputFile(String filename);
public OutputStream getSessionOutputStream(String filename) throws FileNotFoundException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy