Skip to content

Commit

Permalink
Merge pull request cdapio#252 from cloudsufi/cdap-ui-hubchanges
Browse files Browse the repository at this point in the history
hub step changes
  • Loading branch information
itsankit-google authored Oct 22, 2024
2 parents 2c58750 + 1ec7af5 commit 77a33ea
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/stepsdesign/CdfHubSteps.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@ public static void openHub() {
CdfHubActions.clickOnHub();
}

@Then("Click on {string} plugin")
@Then("Click on {string} plugin in hub")
public static void openPlugin(String pluginName) {
CdfHubActions.clickOnOptionsFromHub(pluginName);
}

@Then("Click on {string} pipeline")
@Then("Click on {string} pipeline in hub")
public static void openPipeline(String pipelineName) {
CdfHubActions.clickOnOptionsFromHub(pipelineName);
}

@Then("Click on {string} option")
@Then("Click on {string} option in hub")
public static void openOptions(String option) {
CdfHubActions.clickOnOptions(option);
}
Expand All @@ -58,7 +58,7 @@ public static void closeButton() {
CdfHubActions.clickOnCloseButton();
}

@Then("Deploy the plugin")
@Then("Deploy the plugin from hub")
public static void deployPlugin() {
CdfHubActions.clickOnDeploy();
CdfHubActions.clickOnFinish();
Expand Down Expand Up @@ -94,7 +94,7 @@ public static void verifyPluginIsDeleted() {
CdfHubActions.verifyPluginIsDeleted();
}

@Then("Click on {string} button")
@Then("Click on {string} button in hub")
public static void clickOnButton(String buttonName) {
CdfHubActions.clickOnButton(buttonName);
}
Expand Down

0 comments on commit 77a33ea

Please sign in to comment.