graphdb-workbench-tests
Version:
Cypress tests for GraphDB workbench
12 lines (9 loc) • 331 B
JavaScript
import {ModalDialogSteps} from "../modal-dialog-steps";
export class DeleteClusterDialogSteps extends ModalDialogSteps {
static getConfirmButton() {
return ModalDialogSteps.getDialogFooter().find('#wb-delete-cluster-submit');
}
static confirmDeleteCluster() {
this.getConfirmButton().click();
}
}