com.nordstrom.automation.selenium.junit.PageSourceCapture Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-foundation Show documentation
Show all versions of selenium-foundation Show documentation
Selenium Foundation is an automation framework designed to extend and enhance the capabilities provided by Selenium (WebDriver).
package com.nordstrom.automation.selenium.junit;
import com.nordstrom.automation.junit.ArtifactCollector;
/**
* This class uses the {@link ArtifactCollector} to implement a page source capturing test watcher.
*/
public class PageSourceCapture extends ArtifactCollector {
/**
* This constructor provides a {@link PageSourceArtifact} object to the {@link ArtifactCollector}.
*
* @param instance JUnit test class instance
*/
public PageSourceCapture(final Object instance) {
super(instance, new PageSourceArtifact());
}
}