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

com.katalon.kata.testng.TestConfiguration Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.katalon.kata.testng;

public class TestConfiguration {
    private String sessionId;

    private Boolean disableScreenshot;

    public String getSessionId() {
        return sessionId;
    }

    public void setSessionId(String sessionId) {
        this.sessionId = sessionId;
    }

    public Boolean getDisableScreenshot() {
        return disableScreenshot;
    }

    public void setDisableScreenshot(Boolean disableScreenshot) {
        this.disableScreenshot = disableScreenshot;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy