@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @digital-ai/devops-page-object-release
2
2
 
3
+ ## 0.0.54
4
+
5
+ ### Patch Changes
6
+
7
+ - 27d812f: S-120147: Added alert validation on taskblackout script
8
+
3
9
  ## 0.0.53
4
10
 
5
11
  ### Patch Changes
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
  }