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 22c13d7 commit f37e7aaCopy full SHA for f37e7aa
e2e-playwright/src/hooks/hooks.ts
@@ -20,7 +20,6 @@ let context: BrowserContext;
20
21
BeforeAll(async function () {
22
browser = await invokeBrowser();
23
-
24
});
25
26
Before(async function ({ pickle }) {
@@ -35,6 +34,9 @@ Before(async function ({ pickle }) {
35
34
const page = await context.newPage();
36
37
fixture.page = page;
+ fixture.page.setDefaultTimeout(60_000); // 60s for actions (clicks, waits)
38
+ fixture.page.setDefaultNavigationTimeout(60_000); // 60s for navigation
39
+
40
41
fixture.logger = createLogger(options(scenarioName));
42
0 commit comments