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

com.sdl.selenium.web.utils.Result Maven / Gradle / Ivy

Go to download

Automated Acceptance Testing. Selenium and Selenium WebDriver test framework for web applications. (optimized for dynamic html, ExtJS, Bootstrap, complex UI, simple web applications/sites)

There is a newer version: 20.08.432.0_b2d2a09
Show newest version
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