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

net.sf.testium.selenium.FieldPublisher Maven / Gradle / Ivy

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