fix tests that were broken by contact-edit page changes

This commit is contained in:
2025-01-05 19:37:49 -07:00
parent 399e6299de
commit 18a3e1cc27
4 changed files with 18 additions and 10 deletions

View File

@@ -33,6 +33,8 @@ test('Record something given', async ({ page }) => {
await expect(page.getByRole('heading', { name: 'Verifiable Claim Details' })).toBeVisible();
await expect(page.getByText(finalTitle, { exact: true })).toBeVisible();
const page1Promise = page.waitForEvent('popup');
// expand the Details section to see the extended details
await page.getByRole('heading', { name: 'Details', exact: true }).click();
await page.getByRole('link', { name: 'View on the Public Server' }).click();
const page1 = await page1Promise;
});