hudson.plugins.seleniumaes.SeleniumAutoExecAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-aes Show documentation
Show all versions of selenium-aes Show documentation
This plugin is a Selenium Auto Exec Server(AES) (http://www.enjoyxstudy.com/selenium/autoexec/) plugin.
package hudson.plugins.seleniumaes;
import hudson.model.AbstractBuild;
import hudson.model.Action;
import java.util.ArrayList;
/**
* @author onozaty
*/
public class SeleniumAutoExecAction implements Action {
/** build */
private AbstractBuild, ?> build;
/** result */
private ArrayList resultList = new ArrayList();
/**
* @param build
*/
public SeleniumAutoExecAction(AbstractBuild, ?> build) {
super();
this.build = build;
}
/**
* @see hudson.model.Action#getDisplayName()
*/
public String getDisplayName() {
return "Selenium AES Results";
}
/**
* @see hudson.model.Action#getIconFileName()
*/
public String getIconFileName() {
return "clipboard.gif";
}
/**
* @see hudson.model.Action#getUrlName()
*/
public String getUrlName() {
return "seleniumaes";
}
/**
* @return build
*/
public AbstractBuild, ?> getBuild() {
return build;
}
/**
* @return resultList
*/
public ArrayList getResultList() {
return resultList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy