@camunda/e2e-test-suite 0.0.650 → 0.0.651

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.
@@ -65,9 +65,10 @@ class OperateHomePage {
65
65
  await this.page
66
66
  .getByLabel('Edit Variable "testVariable"')
67
67
  .getByText('"testValue"')
68
- .dblclick();
69
- await this.page.keyboard.press('Backspace');
70
- await this.page.keyboard.type(newValue);
68
+ .click();
69
+ await this.page.keyboard.press('ControlOrMeta+A');
70
+ await this.page.keyboard.press('Delete');
71
+ await this.page.keyboard.insertText(`"${newValue}"`);
71
72
  }
72
73
  async clickSaveVariableButton() {
73
74
  await this.applyButton.click();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/e2e-test-suite",
3
- "version": "0.0.650",
3
+ "version": "0.0.651",
4
4
  "description": "End-to-end test helpers for Camunda 8",
5
5
  "repository": {
6
6
  "type": "git",