com.github.siwenyan.si.model.SiModelSuite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of side Show documentation
Show all versions of side Show documentation
Java runner of Selenium IDE project
package com.github.siwenyan.si.model;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
public class SiModelSuite {
private String id = UUID.randomUUID().toString();
private String name = "";
private boolean persistSession = false;
private boolean parallel = false;
private long timeout = 0;
private List tests = new ArrayList();
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public boolean isPersistSession() {
return persistSession;
}
public void setPersistSession(boolean persistSession) {
this.persistSession = persistSession;
}
public boolean isParallel() {
return parallel;
}
public void setParallel(boolean parallel) {
this.parallel = parallel;
}
public long getTimeout() {
return timeout;
}
public void setTimeout(long timeout) {
this.timeout = timeout;
}
public List getTests() {
return tests;
}
public void setTests(List tests) {
this.tests = tests;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy