This patch adds support for `technology preview` webkit channel, which
we will keep close to the actual Safari Technology Preview releases.
This channel does not install by default. It is supposed to be installed
with the following CLI command:
```sh
$ npx playwright install webkit-technology-preview
```
Once the channel is installed, it can be used the following way:
```js
const browser = await playwright.webkit.launch({
channel: 'technology-preview',
});
```
**NOTE:** if clients attempt using the channel without installing it,
it'll throw an error with a copyable instructions to install via CLI.
References #5884
34 lines
648 B
JSON
34 lines
648 B
JSON
{
|
|
"comment": "Do not edit this file, use utils/roll_browser.js",
|
|
"browsers": [
|
|
{
|
|
"name": "chromium",
|
|
"revision": "865012",
|
|
"installByDefault": true
|
|
},
|
|
{
|
|
"name": "firefox",
|
|
"revision": "1239",
|
|
"installByDefault": true
|
|
},
|
|
{
|
|
"name": "webkit",
|
|
"revision": "1457",
|
|
"installByDefault": true,
|
|
"revisionOverrides": {
|
|
"mac10.14": "1443"
|
|
}
|
|
},
|
|
{
|
|
"name": "webkit-technology-preview",
|
|
"revision": "1443",
|
|
"installByDefault": false
|
|
},
|
|
{
|
|
"name": "ffmpeg",
|
|
"revision": "1005",
|
|
"installByDefault": true
|
|
}
|
|
]
|
|
}
|