com.sdl.selenium.conditions.RenderSuccessCondition 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.conditions;
import com.sdl.selenium.web.WebLocator;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class RenderSuccessCondition extends SuccessCondition implements RenderCondition {
private static final Logger LOGGER = LoggerFactory.getLogger(RenderSuccessCondition.class);
private WebLocator component;
private RenderSuccessCondition(String message) {
super(message);
}
public RenderSuccessCondition(WebLocator component){
this(component.toString());
this.component = component;
}
public RenderSuccessCondition(WebLocator component, int priority){
this(component);
setPriority(priority);
}
@Override
public boolean execute() {
return component.isElementPresent();
}
@Override
public String toString() {
return super.toString() + component;
}
@Override
public WebLocator getComponent(){
return component;
}
/**
*
* @return component.getText()
*/
@Override
public String getResultMessage() {
return component.getText();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy