playwright/browsers.json
Dmitry Gozman d0336ea5c2
fix(network): disallow intercepting redirects (#2617)
WebKit and Firefox are only able to continue redirects.
Firefox is faking it on the backend, so you can't even stall it.

Instead, we just do not fire routes for redirects on all browsers,
to avoid surprises.
2020-06-18 17:15:47 -07:00

17 lines
214 B
JSON

{
"browsers": [
{
"name": "chromium",
"revision": "775089"
},
{
"name": "firefox",
"revision": "1113"
},
{
"name": "webkit",
"revision": "1286"
}
]
}