Skip to content

Commit

Permalink
fix: test case fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
777abhi committed May 29, 2023
1 parent cc8ca6e commit 8c93432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ui/example.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ test('sanity - get started link & explore', async ({ page }) => {
await page.goto('https://playwright.dev/');
await page.getByRole('link', { name: 'Get started' }).click();
await page.getByRole('heading', { name: 'Installation' }).click();
await page.getByRole('listitem').filter({ hasText: 'Getting StartedInstallationWriting TestsRunning TestsTest GeneratorTrace ViewerC' }).getByRole('link', { name: 'Trace Viewer' }).click();
await page.getByRole('listitem').filter({ hasText: 'Getting StartedInstallation' }).getByRole('link', { name: 'Trace Viewer' }).click();
await page.getByRole('button', { name: 'Search' }).click();
await page.getByPlaceholder('Search docs').fill('test');
await page.getByRole('link', { name: 'Playwright enables reliable end-to-end testing for modern web …' }).click();
Expand Down

0 comments on commit 8c93432

Please sign in to comment.