use of org.fest.swing.core.matcher.DialogMatcher in project intellij-community by JetBrains.
the class ConfigureProjectSubsetDialogFixture method find.
@NotNull
public static ConfigureProjectSubsetDialogFixture find(@NotNull Robot robot) {
DialogMatcher matcher = withTitle("Select Modules to Include in Project Subset").andShowing();
DialogFixture dialog = findDialog(matcher).withTimeout(SHORT_TIMEOUT.duration()).using(robot);
return new ConfigureProjectSubsetDialogFixture(dialog);
}
Aggregations