com.sdl.selenium.extjs3.grid.TestData 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.grid;
public class TestData {
public String searchText;
public int columnIndex;
public String searchType;
public String getSearchText() {
return searchText;
}
public void setSearchText(String searchText) {
this.searchText = searchText;
}
public int getColumnIndex() {
return columnIndex;
}
public void setColumnIndex(int columnIndex) {
this.columnIndex = columnIndex;
}
public String getSearchType() {
return searchType;
}
public void setSearchType(String searchType) {
this.searchType = searchType;
}
public TestData(String searchText, int columnIndex, String searchType){
setSearchText(searchText);
setColumnIndex(columnIndex);
setSearchType(searchType);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy