use of org.eclipse.reddeer.workbench.core.condition.JobIsRunning in project linuxtools by eclipse.
the class ImageTagSelectionPage method finish.
public void finish() {
new FinishButton().click();
new WaitWhile(new JobIsRunning(), TimePeriod.VERY_LONG);
}
use of org.eclipse.reddeer.workbench.core.condition.JobIsRunning in project linuxtools by eclipse.
the class NewDockerConnectionPage method finish.
public void finish() {
new WaitUntil(new ShellIsAvailable(NEW_DOCKER_CONNECTION_SHELL));
new WaitUntil(new ControlIsEnabled(new FinishButton()));
new FinishButton().click();
new WaitWhile(new ShellIsAvailable(NEW_DOCKER_CONNECTION_SHELL), TimePeriod.LONG);
new WaitWhile(new JobIsRunning(), TimePeriod.VERY_LONG);
}
use of org.eclipse.reddeer.workbench.core.condition.JobIsRunning in project linuxtools by eclipse.
the class DockerConnection method enableConnection.
public void enableConnection() {
select();
new DefaultToolItem("Enable Connection").click();
new WaitWhile(new JobIsRunning());
}
use of org.eclipse.reddeer.workbench.core.condition.JobIsRunning in project linuxtools by eclipse.
the class DockerConnection method refreshContainers.
/**
* Refresh containers.
*/
public void refreshContainers() {
treeViewerHandler.getTreeItem(item, "Containers").select();
new ContextMenu().getItem("Refresh").select();
new WaitWhile(new JobIsRunning());
}
use of org.eclipse.reddeer.workbench.core.condition.JobIsRunning in project linuxtools by eclipse.
the class DockerConnection method refreshImages.
/**
* Refresh images.
*/
public void refreshImages() {
treeViewerHandler.getTreeItem(item, "Images").select();
new ContextMenu().getItem("Refresh").select();
new WaitWhile(new JobIsRunning());
}
Aggregations