From e7a7a0cfc1594d0c7e9d9569540ec1e8ccddab14 Mon Sep 17 00:00:00 2001 From: Nav-2d Date: Fri, 17 Sep 2021 15:11:48 -0700 Subject: [PATCH] docs(test-configuration): Add actionTimeout to configuration (#8994) --- docs/src/test-configuration-js.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/src/test-configuration-js.md b/docs/src/test-configuration-js.md index 467cc3a351..a800786704 100644 --- a/docs/src/test-configuration-js.md +++ b/docs/src/test-configuration-js.md @@ -118,6 +118,7 @@ test.describe('headed block', () => { These are commonly used options for various scenarios. You usually set them globally in [configuration file](#global-configuration). +- `actionTimeout` - Timeout for each Playwright action in milliseconds. Defaults to `0` (no timeout). - `baseURL` - Base URL used for all pages in the context. Allows navigating by using just the path, for example `page.goto('/settings')`. - `browserName` - Name of the browser that will run the tests, one of `chromium`, `firefox`, or `webkit`. - `bypassCSP` - Toggles bypassing Content-Security-Policy. Useful when CSP includes the production origin.