test: Refactor page objects and reuse locators (#19191)

This commit is contained in:
Suguru Inoue
2025-09-08 11:12:43 +02:00
committed by GitHub
parent 89b61ae2c1
commit 8f99f092ff
19 changed files with 530 additions and 575 deletions

View File

@@ -18,7 +18,7 @@ test.describe('ADO-1338-ndv-missing-input-panel', () => {
);
await n8n.canvas.openNode('Discourse1');
await expect(n8n.ndv.getInputPanel()).toBeVisible();
await expect(n8n.ndv.getOutputPanel()).toBeVisible();
await expect(n8n.ndv.inputPanel.get()).toBeVisible();
await expect(n8n.ndv.outputPanel.get()).toBeVisible();
});
});