com.sdl.selenium.conditions.RenderFailCondition 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.conditions;
import com.sdl.selenium.web.WebLocator;
/**
* When specified element has been rendered, but it was considered as a fail result (instance of FailCondition)
*/
public class RenderFailCondition extends FailCondition implements RenderCondition {
private WebLocator component;
private RenderFailCondition(String message) {
super(message);
}
private RenderFailCondition(String message, String className) {
super(message, className);
}
public RenderFailCondition(WebLocator component) {
this(component.toString());
this.component = component;
}
public RenderFailCondition(WebLocator component, String className) {
this(component.toString(), className);
this.component = component;
}
public RenderFailCondition(WebLocator component, int priority) {
this(component);
setPriority(priority);
}
public RenderFailCondition(WebLocator component, int priority, String className) {
this(component, className);
setPriority(priority);
}
@Override
public boolean execute() {
return component.isPresent();
}
// @Override
// public String toString() {
// return super.toString();
// }
@Override
public WebLocator getComponent() {
return component;
}
/**
* @return component.getText()
*/
@Override
public String getResultMessage() {
return component.getText();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy