
net.sf.testium.selenium.FieldPublisher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testium-selenium-plugin Show documentation
Show all versions of testium-selenium-plugin Show documentation
Selenium Plugin for the Testium Executor
The newest version!
package net.sf.testium.selenium;
import java.util.List;
import org.openqa.selenium.WebElement;
/**
* Maps Testium Variable names to WebElements.
*
* @author akranenburg
*
*/
public interface FieldPublisher {
/**
* Adds an element to the map
* @param anElement
*/
public void addElement( String varName, WebElement element );
/**
* Adds an element-list to the map
* @param anElementList
*/
public void addElement( String varName, List elements );
/**
* @param name
* @return the element from the map
*/
public WebElement getElement( String varName );
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy