@digital-ai/devops-page-object-release 0.0.53 → 0.0.54
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.
- package/CHANGELOG.md +6 -0
- package/dist/main.js +9 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +9 -0
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +1 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/main.js
CHANGED
|
@@ -2976,6 +2976,15 @@ class $6a21661eb4695574$export$e946776eae644790 extends (0, $f8721861c660dd88$ex
|
|
|
2976
2976
|
}).click();
|
|
2977
2977
|
await (0, $kKeXs$playwrighttest.expect)(this.startButton).not.toBeVisible();
|
|
2978
2978
|
}
|
|
2979
|
+
async startNowWithBlackout(comment) {
|
|
2980
|
+
await this.startButton.click();
|
|
2981
|
+
await this.commentBox.fill(comment);
|
|
2982
|
+
await (0, $kKeXs$playwrighttest.expect)(this.page.getByText("Are you sure you want to run this task during the blackout period?")).toBeVisible();
|
|
2983
|
+
await this.page.locator("button", {
|
|
2984
|
+
hasText: "Start now"
|
|
2985
|
+
}).click();
|
|
2986
|
+
await (0, $kKeXs$playwrighttest.expect)(this.startButton).not.toBeVisible();
|
|
2987
|
+
}
|
|
2979
2988
|
async expectTaskTitle(taskTitle) {
|
|
2980
2989
|
await (0, $kKeXs$playwrighttest.expect)(this.page.locator(".task-drawer .task-title-input .dot-view-mode-typography")).toContainText(taskTitle);
|
|
2981
2990
|
}
|