All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.smartbear.readyapi.client.teststeps.datasource.ExcelDataSourceTestStepBuilder Maven / Gradle / Ivy

Go to download

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy