com.sdl.selenium.web.form.TextField 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.SearchType;
import com.sdl.selenium.web.WebLocator;
import com.sdl.selenium.web.utils.MultiThreadClipboardUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class TextField extends WebLocator implements ITextField {
private static final Logger LOGGER = LoggerFactory.getLogger(TextField.class);
public TextField() {
setClassName("TextField");
setTag("input");
}
public TextField(WebLocator container) {
this();
setContainer(container);
}
public TextField(String id) {
this();
setId(id);
}
/**
* @param value value
* @param searchTypes accept only SearchType.EQUALS, SearchType.CONTAINS, SearchType.STARTS_WITH, SearchType.TRIM
* @return current element
*/
public T setPlaceholder(String value, SearchType ...searchTypes) {
setAttribute("placeholder", value, searchTypes);
return (T) this;
}
public boolean pasteInValue(String value) {
assertReady();
if (value != null) {
currentElement.clear();
MultiThreadClipboardUtils.copyString(value);
MultiThreadClipboardUtils.pasteString(this);
LOGGER.info("Set value(" + this + "): " + value + "'");
return true;
}
return false;
}
public boolean setValue(String value) {
assertReady();
return executor.setValue(this, value);
}
public String getValue() {
assertReady();
return executor.getValue(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy