mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
db28203e64
This PR adds a basic support for WebDriver BiDi that currently includes only the ability to establish a connection and shutdown the browser. Therefore, the implementation is marked as internal and won't show up in the changelog as it's barely useful at the moment. The API classes are kept as classes instead of interfaces so that clients relying on instanceof checks still work.
50 lines
1.0 KiB
JSON
50 lines
1.0 KiB
JSON
{
|
|
"testSuites": [
|
|
{
|
|
"id": "chrome-headless",
|
|
"platforms": ["linux", "win32", "darwin"],
|
|
"parameters": ["chrome", "headless"]
|
|
},
|
|
{
|
|
"id": "chrome-headful",
|
|
"platforms": ["linux"],
|
|
"parameters": ["chrome", "headful"]
|
|
},
|
|
{
|
|
"id": "chrome-new-headless",
|
|
"platforms": ["linux"],
|
|
"parameters": ["chrome", "chrome-headless"]
|
|
},
|
|
{
|
|
"id": "firefox-headless",
|
|
"platforms": ["linux"],
|
|
"parameters": ["firefox", "headless"]
|
|
},
|
|
{
|
|
"id": "firefox-bidi",
|
|
"platforms": ["linux"],
|
|
"parameters": ["firefox", "headless", "webDriverBiDi"]
|
|
}
|
|
],
|
|
"parameterDefinitons": {
|
|
"chrome": {
|
|
"PUPPETEER_PRODUCT": "chrome"
|
|
},
|
|
"firefox": {
|
|
"PUPPETEER_PRODUCT": "firefox"
|
|
},
|
|
"headless": {
|
|
"HEADLESS": "true"
|
|
},
|
|
"headful": {
|
|
"HEADLESS": "false"
|
|
},
|
|
"chrome-headless": {
|
|
"HEADLESS": "chrome"
|
|
},
|
|
"webDriverBiDi": {
|
|
"PUPPETEER_PROTOCOL": "webDriverBiDi"
|
|
}
|
|
}
|
|
}
|