Timeouts
There are different kinds of timeouts you will encounter while working with Browser checks:
Timeout name | Timeout origin | Default value | Can it be changed? |
---|---|---|---|
Browser check execution timeout | Checkly | 120 seconds | No |
Playwright test timeout | Playwright | 30 seconds | Yes |
Playwright navigation timeout | Playwright | 30 seconds | Yes |
Playwright action timeout | Playwright | no timeout | Yes |
Checkly runs your Browser check code for a maximum of 120 seconds. Tests that exceed this time will be capped and time out. Everything in your Browser Check needs to happen within those 120 seconds, no matter what.
Playwright does offer multiple configurable timeouts. Make sure you configure these in a way that prevents your check from hitting the general 120 seconds timeout.
Timeout-related errors
Timeout-related errors are often a sticking point for many beginners. Understanding which timeout is being raised and which command or config option it corresponds to can save you plenty of time when debugging a failing script. Here we try to explain the most common timeout errors.
Test timeout of 30000ms exceeded.
This refers to Playwright’s own 30s default timeout for a single test
fixture. While it is best to keep your checks as short as possible, you can increase a test’s timeout using test.setTimeout(milliseconds)
. For example:
import { test } from '@playwright/test'
test('add item to wishlist', async ({ page }) => {
test.setTimeout(60000)
// rest of your script
})
const { test } = require('@playwright/test')
test('add item to wishlist', async ({ page }) => {
test.setTimeout(60000)
// rest of your script
})
Your check run has reached the maximum run time of 120000 ms.
In this case, your script is hitting Checkly’s 120s total Browser check timeout. This can’t be configured and is in place to prevent checks from running way longer than acceptable. Try to make your check shorter by following best practices.
No assets will be available for review after the check has gone over the maximum run time.
Timeout 20000ms exceeded
Different actions, such as clicks, explicit waits and so on, can have their own timeout. In these cases, Playwright will always state what kind of action caused the timeout just before this message. For example, you might see an error like: page.waitForLoadState: Timeout 20000ms exceeded
. In that case, looking at the page.waitForLoadState
commands in your script will help you find the culprit.
You can contribute to this documentation by editing this page on Github