com.katalon.kata.testng.TestConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of katalium Show documentation
Show all versions of katalium Show documentation
Fast, easy and reliable testing framework
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;
}
}