Update e2e test

This commit is contained in:
Arnaud 2024-10-22 11:14:53 +02:00
parent 8d1b91e81c
commit 06b8a34348
No known key found for this signature in database
GPG Key ID: 69D6CE281FCAE663

View File

@ -30,7 +30,7 @@ test('select a uploaded cid when creating a storage request', async ({ page }) =
await page.getByRole('link', { name: 'Purchases' }).click();
await page.getByRole('button', { name: 'Storage Request' }).click();
await page.getByPlaceholder('Select or type your CID').click();
await page.getByText('N/A0').click();
await page.locator('.dropdown-option').nth(1).click();
await expect(page.getByText('button[disabled]')).not.toBeVisible();
})