com.sdl.selenium.conditions.ElementRemovedSuccessCondition 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;
// TODO is possible that ElementRemovedSuccessCondition is executed because some error messages have been arrived
// think about some solutions to fix this.
public class ElementRemovedSuccessCondition extends SuccessCondition implements RenderCondition {
private static final Logger LOGGER = LoggerFactory.getLogger(ElementRemovedSuccessCondition.class);
private WebLocator component;
private ElementRemovedSuccessCondition(String message) {
super(message);
}
public ElementRemovedSuccessCondition(WebLocator component) {
this(component.toString());
this.component = component;
}
public ElementRemovedSuccessCondition(WebLocator component, int priority) {
this(component);
setPriority(priority);
}
public boolean execute() {
return !component.waitToRender(0L, false);
}
@Override
public WebLocator getComponent() {
return component;
}
/**
* @return component.getText()
*/
@Override
public String getResultMessage() {
return component.getText();
}
public String toString() {
return super.toString() + component;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy