com.sdl.selenium.materialui.list.List 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.materialui.list;
import com.sdl.selenium.materialui.menu.IMenu;
import com.sdl.selenium.materialui.menu.Menu;
import com.sdl.selenium.web.SearchType;
import com.sdl.selenium.web.WebLocator;
import lombok.extern.slf4j.Slf4j;
import java.util.ArrayList;
@Slf4j
public class List extends WebLocator implements IMenu {
public List() {
setClassName("List");
setTag("ul");
}
public List(WebLocator container) {
this();
setContainer(container);
}
public List clickOnAnd(String item, final SearchType... searchTypes) {
if (clickOn(item, searchTypes)) {
return this;
} else {
return null;
}
}
public boolean clickOn(String item, final SearchType... searchTypes) {
WebLocator itemEl = getItemEl(item, searchTypes);
return itemEl.click();
}
public boolean doClickOn(String item, final SearchType... searchTypes) {
return getItemEl(item, searchTypes).doClick();
}
public WebLocator getItemEl(String item, SearchType... searchTypes) {
return new WebLocator(this).setTag("li").setClasses("MuiListItem-root").setText(item, searchTypes);
}
@Override
public boolean clickOnMenu(String option, SearchType... searchTypes) {
Menu menu = new Menu();
return menu.clickOnMenu(option, searchTypes);
}
public ArrayList getValues() {
ArrayList items = new ArrayList<>();
WebLocator liEl = new WebLocator(this).setTag("li").setClasses("MuiListItem-root");
int size = liEl.size();
for (int i = 1; i <= size; i++) {
liEl.setResultIdx(i);
String text = liEl.getText();
items.add(text);
}
return items;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy