com.sdl.selenium.extjs3.AdvancedTextField 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.extjs3;
import com.sdl.selenium.extjs3.form.TextField;
import com.sdl.selenium.utils.config.WebDriverConfig;
import com.sdl.selenium.web.WebLocator;
import com.sdl.selenium.web.utils.Utils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
// TODO extend other class not textfield
public class AdvancedTextField extends TextField {
private static final Logger LOGGER = LoggerFactory.getLogger(AdvancedTextField.class);
private static String menuClass = "x-menu-floating";
public AdvancedTextField() {
setClassName("Menu");
}
public AdvancedTextField(String cls) {
this();
setClasses(cls);
}
public AdvancedTextField(WebLocator container) {
this();
setContainer(container);
}
public AdvancedTextField(WebLocator container, String label) {
this();
setContainer(container);
setLabel(label);
}
public AdvancedTextField(String cls, WebLocator container) {
this();
setContainer(container);
setClasses(cls);
}
public boolean select(String value) {
LOGGER.debug("select: " + value);
boolean found = false;
if(clickIcon("arrow")){
Utils.sleep(500);
//TODO move this in a menu class
String stylePath = "";
if(!WebDriverConfig.isIE()){
stylePath = " and contains(@style,'visible')";
}
String valuePath = "//*[contains(@class, '" + menuClass + "')" + stylePath + "]//*[text()='" + value + "']";
WebLocator iconLocator = new WebLocator();
iconLocator.setElPath(valuePath);
found = iconLocator.clickAt();
if (!found) {
LOGGER.error("The option " + value + " could not be located.");
}
}
return found;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy