use of org.jboss.tools.openshift.reddeer.condition.TreeIsAvailable in project jbosstools-openshift by jbosstools.
the class TemplatesCreator method selectServerTemplate.
private void selectServerTemplate(String templateName) {
new DefaultTabItem(OpenShiftLabel.TextLabels.SERVER_TEMPLATE).activate();
new WaitUntil(new TreeIsAvailable());
new DefaultTree().selectItems(new DefaultTreeItem(templateName));
}
use of org.jboss.tools.openshift.reddeer.condition.TreeIsAvailable in project jbosstools-openshift by jbosstools.
the class TemplatesCreator method selectLocalTemplate.
private void selectLocalTemplate(final String templateLocalPath) {
new DefaultTabItem(OpenShiftLabel.TextLabels.CUSTOM_TEMPLATE).activate();
new WaitWhile(new TreeIsAvailable());
new LabeledText(OpenShiftLabel.TextLabels.SELECT_LOCAL_TEMPLATE).setText(templateLocalPath);
}
Aggregations