com.sdl.selenium.web.form.ITextField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Testy Show documentation
Show all versions of Testy Show documentation
Automated Acceptance Testing. Selenium and Selenium WebDriver test framework for web applications.
(optimized for dynamic html, ExtJS, Bootstrap, complex UI, simple web applications/sites)
package com.sdl.selenium.web.form;
import com.sdl.selenium.web.Editable;
import com.sdl.selenium.web.IWebLocator;
import com.sdl.selenium.web.SearchType;
public interface ITextField extends IWebLocator, Editable {
/**
* Set value to DOM element
* @param value TextField
* @return true
*/
boolean setValue(String value);
/**
* Get value from DOM element
* @return value
*/
String getValue();
T setPlaceholder(final String value, SearchType...searchTypes);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy