We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e2fdfa commit b782654Copy full SHA for b782654
tests/v2/admin_settings.spec.js
@@ -5,7 +5,7 @@ test('Show the admin settings page', async ({ page }) => {
5
await test.step('Open the admin settings page', async () => {
6
await page.goto('/v2/admin/settings');
7
await waitPageLoading(page);
8
- await expect(page.getByText('FRACTAL_TASKS_DIR')).toBeVisible();
+ await expect(page.getByRole('cell', { name: 'FRACTAL_TASKS_DIR', exact: true })).toBeVisible();
9
await expect(page.getByText('***')).not.toBeVisible();
10
});
11
0 commit comments