com.smartbear.readyapi.client.teststeps.datasource.ExcelDataSourceTestStepBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ready-api-testserver-client Show documentation
Show all versions of ready-api-testserver-client Show documentation
Java client library for creating and executing test recipes against Ready!API TestServer
The newest version!
package com.smartbear.readyapi.client.teststeps.datasource;
public class ExcelDataSourceTestStepBuilder extends DataSourceTestStepBuilder {
public ExcelDataSourceTestStepBuilder() {
withDataSource(new ExcelDataSourceBuilder());
}
public ExcelDataSourceTestStepBuilder addProperty(String propertyName) {
getDataSourceBuilder().addProperty(propertyName);
return this;
}
public ExcelDataSourceTestStepBuilder startAtCell(String cell) {
getDataSourceBuilder().startAtCell(cell);
return this;
}
public ExcelDataSourceTestStepBuilder withWorksheet(String worksheet) {
getDataSourceBuilder().withWorksheet(worksheet);
return this;
}
public ExcelDataSourceTestStepBuilder withFilePath(String filePath) {
getDataSourceBuilder().withFilePath(filePath);
return this;
}
public ExcelDataSourceTestStepBuilder ignoreEmpty() {
getDataSourceBuilder().ignoreEmpty();
return this;
}
}