@digital-ai/devops-page-object-release 1.0.11 → 1.0.13
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 +12 -0
- package/dist/main.js +16 -10
- package/dist/main.js.map +1 -1
- package/dist/module.js +16 -10
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +8 -6
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1816,6 +1816,8 @@ declare class TaskListPage extends WithFilterDrawer {
|
|
|
1816
1816
|
clickOnAssignedToMe(): Promise<void>;
|
|
1817
1817
|
clickOnAssignedToMyTeams(): Promise<void>;
|
|
1818
1818
|
clickOnAssignedToAllAvailable(): Promise<void>;
|
|
1819
|
+
clickOnAssignedToNoUser(): Promise<void>;
|
|
1820
|
+
clickOnNoUserTeamAssigned(): Promise<void>;
|
|
1819
1821
|
expectTaskToNotBeDisplayed(taskTitle: string): Promise<void>;
|
|
1820
1822
|
expectTaskToBeDisplayed(taskTitle: string): Promise<void>;
|
|
1821
1823
|
expectTasksToBeDisplayed(tasks: {
|
|
@@ -2260,14 +2262,14 @@ declare class TaskAccessPage extends WithPage {
|
|
|
2260
2262
|
constructor(page: Page);
|
|
2261
2263
|
setTaskAvailableToAllUsers(taskName: string, enable?: boolean): Promise<void>;
|
|
2262
2264
|
}
|
|
2263
|
-
declare class
|
|
2264
|
-
|
|
2265
|
+
declare class AIAssistantPage extends WithPage {
|
|
2266
|
+
AIAssistantButton: Locator;
|
|
2265
2267
|
constructor(page: Page);
|
|
2266
|
-
|
|
2268
|
+
clickAIAssistantButton(): Promise<void>;
|
|
2267
2269
|
clickNewChatButton(): Promise<void>;
|
|
2268
2270
|
clickHistory(): Promise<void>;
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
+
expectAIAssistantChatWindowToBeOpen(): Promise<void>;
|
|
2272
|
+
expectAIAssistantChatWindowToBeClosed(): Promise<void>;
|
|
2271
2273
|
expectCorrectResponse(response: string, timeout?: number): Promise<void>;
|
|
2272
2274
|
expectChatInputDrawerToBeEnabled(): Promise<void>;
|
|
2273
2275
|
feedYourQuestion(question: string): Promise<void>;
|
|
@@ -2302,7 +2304,7 @@ declare class Navigation {
|
|
|
2302
2304
|
util: Util;
|
|
2303
2305
|
workflowCatalogPage: WorkflowCatalogPage;
|
|
2304
2306
|
taskAccessPage: TaskAccessPage;
|
|
2305
|
-
|
|
2307
|
+
aiAssistantPage: AIAssistantPage;
|
|
2306
2308
|
constructor(page: Page);
|
|
2307
2309
|
openTemplate(id: string): Promise<ReleasePage>;
|
|
2308
2310
|
openFolder(id: string): Promise<FolderPage>;
|