@digital-ai/devops-page-object-release 1.0.11 → 1.0.12
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 +10 -10
- package/dist/main.js.map +1 -1
- package/dist/module.js +10 -10
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +6 -6
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/module.js
CHANGED
|
@@ -9806,15 +9806,15 @@ class $2c3301798e261060$export$8da2fa93430be6ca extends (0, $9626bc9256ce31f7$ex
|
|
|
9806
9806
|
|
|
9807
9807
|
|
|
9808
9808
|
|
|
9809
|
-
class $
|
|
9809
|
+
class $40494bba05accf4b$export$85c59dc7c02a90c9 extends (0, $9626bc9256ce31f7$export$2b65d1d97338f32b) {
|
|
9810
9810
|
constructor(page){
|
|
9811
9811
|
super(page);
|
|
9812
|
-
this.
|
|
9813
|
-
name: '
|
|
9812
|
+
this.AIAssistantButton = this.page.getByRole('button', {
|
|
9813
|
+
name: 'AI Assistant'
|
|
9814
9814
|
});
|
|
9815
9815
|
}
|
|
9816
|
-
async
|
|
9817
|
-
await this.
|
|
9816
|
+
async clickAIAssistantButton() {
|
|
9817
|
+
await this.AIAssistantButton.click();
|
|
9818
9818
|
}
|
|
9819
9819
|
async clickNewChatButton() {
|
|
9820
9820
|
await (0, $hOLA6$expect)(this.page.getByRole('button', {
|
|
@@ -9828,14 +9828,14 @@ class $73758afa4dfeb1aa$export$3006749443672de8 extends (0, $9626bc9256ce31f7$ex
|
|
|
9828
9828
|
await (0, $hOLA6$expect)(this.page.getByTestId('rail-item-1')).toBeVisible();
|
|
9829
9829
|
await this.page.getByTestId('rail-item-1').first().click();
|
|
9830
9830
|
}
|
|
9831
|
-
async
|
|
9831
|
+
async expectAIAssistantChatWindowToBeOpen() {
|
|
9832
9832
|
await (0, $hOLA6$expect)(this.page.getByRole('heading', {
|
|
9833
|
-
name: '
|
|
9833
|
+
name: 'AI Assistant'
|
|
9834
9834
|
})).toBeVisible();
|
|
9835
9835
|
}
|
|
9836
|
-
async
|
|
9836
|
+
async expectAIAssistantChatWindowToBeClosed() {
|
|
9837
9837
|
await (0, $hOLA6$expect)(this.page.getByRole('heading', {
|
|
9838
|
-
name: '
|
|
9838
|
+
name: 'AI Assistant'
|
|
9839
9839
|
})).not.toBeVisible();
|
|
9840
9840
|
}
|
|
9841
9841
|
async expectCorrectResponse(response, timeout = 360000) {
|
|
@@ -9893,7 +9893,7 @@ class $e72552cbf941ecfa$export$b8a61e5c71402559 {
|
|
|
9893
9893
|
this.util = new (0, $87bbb6d35ad31a00$export$f8f26dd395d7e1bd)(page);
|
|
9894
9894
|
this.workflowCatalogPage = new (0, $2c7e9876d54521fb$export$5628dfd1b9e94785)(page);
|
|
9895
9895
|
this.taskAccessPage = new (0, $2c3301798e261060$export$8da2fa93430be6ca)(page);
|
|
9896
|
-
this.
|
|
9896
|
+
this.aiAssistantPage = new (0, $40494bba05accf4b$export$85c59dc7c02a90c9)(page);
|
|
9897
9897
|
}
|
|
9898
9898
|
async openTemplate(id) {
|
|
9899
9899
|
return this.openReleaseOrTemplate(id, false);
|