use of io.syndesis.qe.pages.integrations.list.IntegrationsListComponent in project syndesis-qe by syndesisio.
the class DashboardSteps method deleteIntegrationOnDashboard.
@When("^Camilla deletes the \"([^\"]*)\" integration in top 5 integrations$")
public void deleteIntegrationOnDashboard(String integrationName) {
log.info("Trying to delete {} on top 5 integrations table");
IntegrationsListComponent listComponent = new IntegrationsListComponent();
listComponent.clickDeleteIntegration(integrationName);
}
Aggregations