com.sdl.selenium.web.utils.Result Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Testy Show documentation
Show all versions of Testy Show documentation
Automated Acceptance Testing. Selenium and Selenium WebDriver test framework for web applications.
(optimized for dynamic html, ExtJS, Bootstrap, complex UI, simple web applications/sites)
package com.sdl.selenium.web.utils;
import lombok.ToString;
@ToString
public class Result {
V result;
int position;
boolean timeOut;
public Result(V result, int position) {
this.result = result;
this.position = position;
}
public Result(V result, int position, boolean timeOut) {
this(result, position);
this.timeOut = timeOut;
}
public V result() {
return result;
}
public int position() {
return position;
}
public boolean timeOut() {
return timeOut;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy