Skip to content

Commit

Permalink
trying to wait longer
Browse files Browse the repository at this point in the history
  • Loading branch information
calldelegation committed Oct 15, 2024
1 parent 41ef9ed commit af8abb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/utils/visit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { Page } from '@playwright/test';

export async function visit(page: Page, pathname: string) {
console.log('GOING TO URL:', pathname);
await page.waitForTimeout(5000);
await page.waitForTimeout(10000);
const pageFinal = await page.goto(`${pathname}`);
await page.waitForTimeout(2000);
return pageFinal;
Expand Down

0 comments on commit af8abb1

Please sign in to comment.