com.sdl.selenium.extjs6.tree.ConditionFunction 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)
The newest version!
package com.sdl.selenium.extjs6.tree;
import lombok.Getter;
import java.util.function.Function;
import java.util.function.Predicate;
@Getter
public class ConditionFunction {
private final Predicate condition;
private final Function function;
public ConditionFunction(Predicate condition, Function function) {
this.condition = condition;
this.function = function;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy