io.magentys.fest.missions.AbstractFinderMission Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cherry-fest Show documentation
Show all versions of cherry-fest Show documentation
Integrate Fest Swing App Testing framework with Cherry
package io.magentys.fest.missions;
import io.magentys.fest.screens.SwingScreenElement;
public abstract class AbstractFinderMission {
protected SwingScreenElement swingScreenElement;
public AbstractFinderMission(SwingScreenElement swingScreenElement) {
this.swingScreenElement = swingScreenElement;
}
protected AbstractFinderMission() {
}
protected String waitMessage(final SwingScreenElement swingScreenElement){
if(swingScreenElement.getAlias() != null){
return "Waiting for " + swingScreenElement.getAlias();
}
return "Waiting for element";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy