@camunda/e2e-test-suite 0.0.456 → 0.0.457
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/pages/SM-8.6/TaskDetailsPage.js +1 -1
- package/dist/pages/SM-8.7/TaskDetailsPage.js +1 -1
- package/dist/pages/SM-8.8/TaskDetailsPage.js +1 -1
- package/dist/pages/SM-8.8/optimizeReportUtils.js +2 -2
- package/dist/pages/c8Run-8.10/TaskDetailsPage.js +1 -1
- package/dist/pages/c8Run-8.6/TaskDetailsPage.js +1 -1
- package/dist/pages/c8Run-8.7/TaskDetailsPage.js +1 -1
- package/dist/pages/c8Run-8.8/TaskDetailsPage.js +1 -1
- package/dist/pages/c8Run-8.9/TaskDetailsPage.js +1 -1
- package/package.json +1 -1
|
@@ -92,7 +92,7 @@ class TaskDetailsPage {
|
|
|
92
92
|
this.tagList = page.getByPlaceholder('Search');
|
|
93
93
|
this.detailsInfo = page.getByTestId('details-info');
|
|
94
94
|
this.textInput = page.locator('[class="fjs-input"]');
|
|
95
|
-
this.taskCompletedBanner = this.page.getByText('Task completed');
|
|
95
|
+
this.taskCompletedBanner = this.page.getByText('Task completed').first();
|
|
96
96
|
this.assignedToMeText = page
|
|
97
97
|
.getByTestId('assignee')
|
|
98
98
|
.getByText('Assigned to me');
|
|
@@ -93,7 +93,7 @@ class TaskDetailsPage {
|
|
|
93
93
|
this.detailsInfo = page.getByTestId('details-info');
|
|
94
94
|
this.textInput = page.locator('[class="fjs-input"]');
|
|
95
95
|
this.textInput = page.locator('[class="fjs-input"]');
|
|
96
|
-
this.taskCompletedBanner = this.page.getByText('Task completed');
|
|
96
|
+
this.taskCompletedBanner = this.page.getByText('Task completed').first();
|
|
97
97
|
this.assignedToMeText = page
|
|
98
98
|
.getByTestId('assignee')
|
|
99
99
|
.getByText('Assigned to me');
|
|
@@ -94,7 +94,7 @@ class TaskDetailsPage {
|
|
|
94
94
|
this.detailsInfo = page.getByTestId('details-info');
|
|
95
95
|
this.textInput = page.locator('[class="fjs-input"]');
|
|
96
96
|
this.textInput = page.locator('[class="fjs-input"]');
|
|
97
|
-
this.taskCompletedBanner = this.page.getByText('Task completed');
|
|
97
|
+
this.taskCompletedBanner = this.page.getByText('Task completed').first();
|
|
98
98
|
this.assignedToMeText = page
|
|
99
99
|
.getByTestId('assignee')
|
|
100
100
|
.getByText('Assigned to me');
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.assertReportWithRefreshes = exports.createReportForProcess = void 0;
|
|
4
4
|
const UtilitiesPage_1 = require("../SM-8.8/UtilitiesPage");
|
|
5
5
|
const createReportForProcess = async (page, optimizeCollectionsPage, optimizeReportPage, processName) => {
|
|
6
|
-
const TOTAL_TIMEOUT_MS =
|
|
6
|
+
const TOTAL_TIMEOUT_MS = 5 * 60 * 1000; // 5 minutes (OpenSearch ingestion can be slow)
|
|
7
7
|
const startTime = Date.now();
|
|
8
8
|
let attempt = 0;
|
|
9
9
|
let found = false;
|
|
@@ -38,7 +38,7 @@ const createReportForProcess = async (page, optimizeCollectionsPage, optimizeRep
|
|
|
38
38
|
};
|
|
39
39
|
exports.createReportForProcess = createReportForProcess;
|
|
40
40
|
const assertReportWithRefreshes = async (page, optimizeHomePage, optimizeCollectionsPage, optimizeReportPage, reportName, locator, text) => {
|
|
41
|
-
const TOTAL_TIMEOUT_MS =
|
|
41
|
+
const TOTAL_TIMEOUT_MS = 5 * 60 * 1000; // 5 minutes (OpenSearch ingestion can be slow)
|
|
42
42
|
const startTime = Date.now();
|
|
43
43
|
let attempt = 0;
|
|
44
44
|
let found = false;
|
|
@@ -91,7 +91,7 @@ class TaskDetailsPage {
|
|
|
91
91
|
this.tagList = page.getByPlaceholder('Search');
|
|
92
92
|
this.detailsInfo = page.getByTestId('details-info');
|
|
93
93
|
this.textInput = page.locator('[class="fjs-input"]');
|
|
94
|
-
this.taskCompletedBanner = this.page.getByText('Task completed');
|
|
94
|
+
this.taskCompletedBanner = this.page.getByText('Task completed').first();
|
|
95
95
|
this.assignedToMeText = this.page
|
|
96
96
|
.getByTestId('assignee')
|
|
97
97
|
.getByText('Assigned to me');
|
|
@@ -91,7 +91,7 @@ class TaskDetailsPage {
|
|
|
91
91
|
this.tagList = page.getByPlaceholder('Search');
|
|
92
92
|
this.detailsInfo = page.getByTestId('details-info');
|
|
93
93
|
this.textInput = page.locator('[class="fjs-input"]');
|
|
94
|
-
this.taskCompletedBanner = this.page.getByText('Task completed');
|
|
94
|
+
this.taskCompletedBanner = this.page.getByText('Task completed').first();
|
|
95
95
|
this.assignedToMeText = this.page
|
|
96
96
|
.getByTestId('assignee')
|
|
97
97
|
.getByText('Assigned to me');
|
|
@@ -91,7 +91,7 @@ class TaskDetailsPage {
|
|
|
91
91
|
this.tagList = page.getByPlaceholder('Search');
|
|
92
92
|
this.detailsInfo = page.getByTestId('details-info');
|
|
93
93
|
this.textInput = page.locator('[class="fjs-input"]');
|
|
94
|
-
this.taskCompletedBanner = this.page.getByText('Task completed');
|
|
94
|
+
this.taskCompletedBanner = this.page.getByText('Task completed').first();
|
|
95
95
|
this.assignedToMeText = this.page
|
|
96
96
|
.getByTestId('assignee')
|
|
97
97
|
.getByText('Assigned to me');
|
|
@@ -91,7 +91,7 @@ class TaskDetailsPage {
|
|
|
91
91
|
this.tagList = page.getByPlaceholder('Search');
|
|
92
92
|
this.detailsInfo = page.getByTestId('details-info');
|
|
93
93
|
this.textInput = page.locator('[class="fjs-input"]');
|
|
94
|
-
this.taskCompletedBanner = this.page.getByText('Task completed');
|
|
94
|
+
this.taskCompletedBanner = this.page.getByText('Task completed').first();
|
|
95
95
|
this.assignedToMeText = this.page
|
|
96
96
|
.getByTestId('assignee')
|
|
97
97
|
.getByText('Assigned to me');
|
|
@@ -91,7 +91,7 @@ class TaskDetailsPage {
|
|
|
91
91
|
this.tagList = page.getByPlaceholder('Search');
|
|
92
92
|
this.detailsInfo = page.getByTestId('details-info');
|
|
93
93
|
this.textInput = page.locator('[class="fjs-input"]');
|
|
94
|
-
this.taskCompletedBanner = this.page.getByText('Task completed');
|
|
94
|
+
this.taskCompletedBanner = this.page.getByText('Task completed').first();
|
|
95
95
|
this.assignedToMeText = this.page
|
|
96
96
|
.getByTestId('assignee')
|
|
97
97
|
.getByText('Assigned to me');
|