use of org.activityinfo.test.pageobject.web.reports.ReportsTab in project activityinfo by bedatadriven.
the class ApplicationPage method navigateToReportsTab.
public ReportsTab navigateToReportsTab() {
FluentElement container = container();
container.find().div(withText("Reports")).clickWhenReady();
// we may got "Save" dialog before leaving the current page
closeSaveDialogSilently(true);
return new ReportsTab(container);
}
Aggregations