org.selophane.elements.widget.Label 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;
/**
* Html form label.
*/
@ImplementedBy(LabelImpl.class)
public interface Label extends Element {
/**
* Gets the for attribute on the label.
*
* @return string containing value of the for attribute, null if empty.
*/
String getFor();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy