com.sdl.selenium.extjs6.form.CheckBoxCell 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.extjs6.form;
import com.sdl.selenium.web.WebLocator;
public class CheckBoxCell extends CheckBox {
public CheckBoxCell() {
setClassName("CheckBoxCell");
setTag("span");
setBaseCls("x-grid-checkcolumn");
setType("");
}
public CheckBoxCell(WebLocator container) {
this();
setContainer(container);
}
@Override
public boolean isChecked() {
String aClass = getAttribute("class", true);
return aClass != null && aClass.contains("x-grid-checkcolumn-checked");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy