@camunda/e2e-test-suite 0.0.348 → 0.0.349
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.
|
@@ -45,8 +45,8 @@ class OperateHomePage {
|
|
|
45
45
|
throw new Error(`Failed to click the processes tab after ${maxRetries} attempts.`);
|
|
46
46
|
}
|
|
47
47
|
async clickEditVariableButton(variableName) {
|
|
48
|
-
const editVariableButton = '
|
|
49
|
-
await this.page.
|
|
48
|
+
const editVariableButton = 'variable-' + variableName;
|
|
49
|
+
await this.page.getByTestId(editVariableButton).getByLabel('Edit').click();
|
|
50
50
|
}
|
|
51
51
|
async clickVariableValueInput() {
|
|
52
52
|
await this.variableValueInput.click();
|