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)
The newest version!
package com.sdl.selenium.web.form;
import com.sdl.selenium.web.WebLocator;
import com.sdl.selenium.web.utils.MultiThreadClipboardUtils;
import org.openqa.selenium.SearchContext;
import org.openqa.selenium.WebElement;
import org.slf4j.Logger;
public class TextField extends Field {
private static final Logger log = org.slf4j.LoggerFactory.getLogger(TextField.class);
public TextField() {
setClassName("TextField");
setTag("input");
}
public TextField(WebLocator container) {
this();
setContainer(container);
}
public TextField(WebElement webElement) {
this();
setWebElement(webElement);
}
public TextField(SearchContext shadowRoot) {
this();
setShadowRoot(shadowRoot);
}
public TextField(String id) {
this();
setId(id);
}
public boolean pasteInValue(String value) {
assertReady();
if (value != null) {
getWebElement().clear();
MultiThreadClipboardUtils.copyString(value);
MultiThreadClipboardUtils.pasteString(this);
log.info("Set value(" + this + "): " + value + "'");
return true;
}
return false;
}
public boolean setValue(String value) {
assertReady();
return executor.setValue(this, value);
}
public boolean setValue(boolean showLog, String value) {
assertReady();
return executor.setValue(showLog, this, value);
}
public String getValue() {
assertReady();
return executor.getValue(this);
}
public String getValue(boolean instant) {
return executor.getValue(this, instant);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy