@camunda/e2e-test-suite 0.0.885 → 0.0.886
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.
|
@@ -102,7 +102,7 @@ class ModelerCreatePage {
|
|
|
102
102
|
this.elemendIdInput = page.getByLabel('ID', { exact: true });
|
|
103
103
|
this.startEventElement = page.locator('.djs-hit').first();
|
|
104
104
|
this.appendPreButton = page.locator('.djs-create-pad-icon > svg').first();
|
|
105
|
-
this.appendTaskButton = page.
|
|
105
|
+
this.appendTaskButton = page.locator('.djs-create-pad-entry[title="Append task"], .djs-create-pad-entry[aria-label="Append task"]');
|
|
106
106
|
this.changeTypeButton = page.getByRole('button', {
|
|
107
107
|
name: 'Change element',
|
|
108
108
|
exact: true,
|
|
@@ -112,7 +112,7 @@ class ModelerCreatePage {
|
|
|
112
112
|
.locator('span')
|
|
113
113
|
.first();
|
|
114
114
|
this.serviceTaskOption = page.getByRole('listitem', { name: 'Service Task' });
|
|
115
|
-
this.appendEndEventButton = page.
|
|
115
|
+
this.appendEndEventButton = page.locator('.djs-create-pad-entry[title="Append end event"], .djs-create-pad-entry[aria-label="Append end event"]');
|
|
116
116
|
this.appendGatewayButton = page.getByTitle('append gateway');
|
|
117
117
|
this.parallelGatewayOption = page.getByText('parallel gateway');
|
|
118
118
|
this.dialog = page.getByRole('dialog');
|