com.sdl.selenium.web.ChildNodes 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;
import java.util.ArrayList;
import java.util.List;
public class ChildNodes {
private SearchType searchType;
private List extends WebLocator> childNodes = new ArrayList<>();
public ChildNodes() {
}
public ChildNodes(SearchType searchType, List extends WebLocator> childNodes) {
this.searchType = searchType;
this.childNodes = childNodes;
}
public SearchType getSearchType() {
return searchType;
}
public void setSearchType(SearchType searchType) {
this.searchType = searchType;
}
public List extends WebLocator> getChildNodes() {
return childNodes;
}
public void setChildNodes(List extends WebLocator> childNodes) {
this.childNodes = childNodes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy