org.selophane.elements.widget.TextInput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webtest Show documentation
Show all versions of webtest Show documentation
Some additional helper for webtesting with selenium
package org.selophane.elements.widget;
import org.selophane.elements.base.Element;
import org.selophane.elements.base.ImplementedBy;
/**
* Text field functionality.
*/
@ImplementedBy(TextInputImpl.class)
public interface TextInput extends Element {
/**
* @param text The text to type into the field.
*/
void set(String text);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy