@digital-ai/devops-page-object-release 0.0.0-snapshot-20251124120504 → 0.0.0-snapshot-20251124124345
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 +1 -2
- package/dist/main.js +0 -17
- package/dist/main.js.map +1 -1
- package/dist/module.js +0 -17
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +0 -3
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/module.js
CHANGED
|
@@ -2902,23 +2902,6 @@ class $c9bb587dd92143c3$export$d1077068a9cc9f17 extends (0, $9626bc9256ce31f7$ex
|
|
|
2902
2902
|
async expectReleaseTaggedWith(tagName) {
|
|
2903
2903
|
await (0, $hOLA6$expect)(this.page.locator("#tags")).toContainText(tagName);
|
|
2904
2904
|
}
|
|
2905
|
-
async expectReleaseNotTaggedWith(tagName) {
|
|
2906
|
-
await (0, $hOLA6$expect)(this.page.locator(`#tags >> text=${tagName}`)).toHaveCount(0);
|
|
2907
|
-
}
|
|
2908
|
-
async addTag(tagName) {
|
|
2909
|
-
const tagInput = this.page.locator("#tags input");
|
|
2910
|
-
await tagInput.fill(tagName);
|
|
2911
|
-
await tagInput.press("Enter");
|
|
2912
|
-
await (0, $hOLA6$expect)(this.page.locator(`#tags >> text=${tagName}`)).toBeVisible();
|
|
2913
|
-
}
|
|
2914
|
-
async removeTag(tagName) {
|
|
2915
|
-
const tag = this.page.locator(`#tags`, {
|
|
2916
|
-
hasText: tagName
|
|
2917
|
-
});
|
|
2918
|
-
const removeIcon = tag.locator(".tag-close");
|
|
2919
|
-
await removeIcon.click();
|
|
2920
|
-
await (0, $hOLA6$expect)(this.page.locator(`#tags >> text=${tagName}`)).toHaveCount(0);
|
|
2921
|
-
}
|
|
2922
2905
|
async expectTemplateTitleToBe(templateTitle) {
|
|
2923
2906
|
await (0, $hOLA6$expect)(this.page.locator('[data-test="created-from-template"]')).toContainText(templateTitle);
|
|
2924
2907
|
}
|