graphdb-workbench-tests 2.4.0-TR11 → 2.4.0-TR12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -67,7 +67,7 @@ describe('Operations Status Component', () => {
|
|
|
67
67
|
OperationsStatusesComponentSteps.openOperationStatusesDialog();
|
|
68
68
|
// When I click on "Running imports" operation element.
|
|
69
69
|
// Then I expect to be redirected to "Query and Update monitoring" view.
|
|
70
|
-
OperationsStatusesComponentSteps.checkOperationElementUrl('
|
|
70
|
+
OperationsStatusesComponentSteps.checkOperationElementUrl('import', 2);
|
|
71
71
|
// Then I expect "Global Operations Component" to still be displayed.
|
|
72
72
|
OperationsStatusesComponentSteps.getOperationsStatusesComponent().should('exist');
|
|
73
73
|
});
|
package/package.json
CHANGED
|
@@ -15,6 +15,7 @@ export class OperationsStatusesComponentSteps {
|
|
|
15
15
|
static checkOperationElementUrl(expectedUrl, operationIndex = 0) {
|
|
16
16
|
OperationsStatusesComponentSteps.getOperationStatuses().eq(operationIndex).then(($operationElement) => {
|
|
17
17
|
expect($operationElement).to.have.attr('target', '_blank');
|
|
18
|
+
expect($operationElement).to.have.attr('href', expectedUrl);
|
|
18
19
|
});
|
|
19
20
|
}
|
|
20
21
|
}
|