@camunda/e2e-test-suite 0.0.192 → 0.0.193

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.
@@ -28,7 +28,7 @@ class AppsPage {
28
28
  this.modelerLink = page.getByRole('link', { name: 'Modeler', exact: true });
29
29
  this.appSwitcherButton = page.getByLabel('App Switcher');
30
30
  this.tasklistLink = page.getByRole('link', { name: 'Tasklist', exact: true });
31
- this.identityLink = page.getByRole('link', { name: 'Identity', exact: true });
31
+ this.identityLink = page.getByRole('link', { name: /^(Admin|Identity)$/ });
32
32
  this.operateLink = page.getByRole('link', { name: 'Operate', exact: true });
33
33
  this.optimizeLink = page.getByRole('link', { name: 'Optimize', exact: true });
34
34
  this.consoleLink = page.getByRole('link', { name: 'Console', exact: true });
@@ -45,7 +45,7 @@ class AppsPage {
45
45
  .filter({ hasText: 'Operate' });
46
46
  this.identityListItem = this.page
47
47
  .getByRole('listitem')
48
- .filter({ hasText: 'Identity' });
48
+ .filter({ hasText: /Admin|Identity/ }); // Identity Should be removed after https://github.com/camunda/camunda/issues/46447 is fixed
49
49
  this.operateButton = page.getByRole('button', {
50
50
  name: 'Operate',
51
51
  exact: true,
@@ -59,8 +59,7 @@ class AppsPage {
59
59
  exact: true,
60
60
  });
61
61
  this.identityButton = page.getByRole('button', {
62
- name: 'Identity',
63
- exact: true,
62
+ name: /^(Admin|Identity)$/, // Identity Should be removed after https://github.com/camunda/camunda/issues/46447 is fixed
64
63
  });
65
64
  }
66
65
  async clickCluster(component, name) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/e2e-test-suite",
3
- "version": "0.0.192",
3
+ "version": "0.0.193",
4
4
  "description": "End-to-end test helpers for Camunda 8",
5
5
  "repository": {
6
6
  "type": "git",