@camunda/e2e-test-suite 0.0.290 → 0.0.292

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.
@@ -33,9 +33,13 @@ class ModelerHomePage {
33
33
  this.modelerPageBanner = page
34
34
  .locator('a')
35
35
  .filter({ hasText: 'Camunda logoModeler' });
36
- this.createNewProjectButton = page.getByRole('button', {
36
+ this.createNewProjectButton = page
37
+ .getByRole('button', {
38
+ name: 'Create new project',
39
+ })
40
+ .or(page.getByRole('button', {
37
41
  name: 'New project',
38
- });
42
+ }));
39
43
  this.projectNameInput = page.locator('[data-test="editable-input"]');
40
44
  this.chooseBpmnTemplateButton = page.getByRole('button', {
41
45
  name: 'Choose BPMN template',
@@ -77,6 +77,7 @@ class NavigationPage {
77
77
  else {
78
78
  await loginPage.login(username, password);
79
79
  }
80
+ await (0, test_1.expect)(banner).toBeVisible();
80
81
  return;
81
82
  }
82
83
  catch (error) {
@@ -82,7 +82,8 @@ _8_10_1.test.describe.parallel('UTR Enabled User Flows Test @tasklistV1', () =>
82
82
  await (0, expectTextWithRetry_1.expectTextWithRetry)(page, taskName3);
83
83
  });
84
84
  });
85
- (0, _8_10_1.test)('User Task Restrictions Enabled Flow - Candidate Group', async ({ page, modelerHomePage, appsPage, modelerCreatePage, browser, taskPanelPage, ocIdentityGroupsPage, ocIdentityHomePage, }) => {
85
+ //Skipped due to bug 5232: https://github.com/camunda/camunda-operator/issues/5232
86
+ _8_10_1.test.skip('User Task Restrictions Enabled Flow - Candidate Group', async ({ page, modelerHomePage, appsPage, modelerCreatePage, browser, taskPanelPage, ocIdentityGroupsPage, ocIdentityHomePage, }) => {
86
87
  _8_10_1.test.slow();
87
88
  const randomName = await (0, _setup_1.generateRandomStringAsync)(3);
88
89
  const processName = 'User_Task_Process_Candidate_Group' + randomName;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/e2e-test-suite",
3
- "version": "0.0.290",
3
+ "version": "0.0.292",
4
4
  "description": "End-to-end test helpers for Camunda 8",
5
5
  "repository": {
6
6
  "type": "git",