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

com.slickqa.webdriver.OutputFileSupport Maven / Gradle / Ivy

There is a newer version: 1.0.1-37
Show newest version
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