@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/dist/module.js CHANGED
@@ -2040,6 +2040,15 @@ class $8e39246218b802fc$export$e946776eae644790 extends (0, $9626bc9256ce31f7$ex
2040
2040
  }).click();
2041
2041
  await (0, $hOLA6$expect)(this.startButton).not.toBeVisible();
2042
2042
  }
2043
+ async startNowWithBlackout(comment) {
2044
+ await this.startButton.click();
2045
+ await this.commentBox.fill(comment);
2046
+ await (0, $hOLA6$expect)(this.page.getByText("Are you sure you want to run this task during the blackout period?")).toBeVisible();
2047
+ await this.page.locator("button", {
2048
+ hasText: "Start now"
2049
+ }).click();
2050
+ await (0, $hOLA6$expect)(this.startButton).not.toBeVisible();
2051
+ }
2043
2052
  async expectTaskTitle(taskTitle) {
2044
2053
  await (0, $hOLA6$expect)(this.page.locator(".task-drawer .task-title-input .dot-view-mode-typography")).toContainText(taskTitle);
2045
2054
  }