ru.yandex.qatools.htmlelements.element.TextBlock Maven / Gradle / Ivy
package ru.yandex.qatools.htmlelements.element;
import org.openqa.selenium.WebElement;
/**
* Represents text block on a web page.
*
* @author Behruz Afzali [email protected]
*/
public class TextBlock extends TypifiedElement {
public TextBlock(WebElement wrappedElement) {
super(wrappedElement);
}
/**
* Returns text contained in text block.
*/
public String getText() {
return getWrappedElement().getText();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy