Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/src/api/class-browsertype.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,10 @@ Connecting over the Chrome DevTools Protocol is only supported for Chromium-base
This connection is significantly lower fidelity than the Playwright protocol connection via [`method: BrowserType.connect`]. If you are experiencing issues or attempting to use advanced functionality, you probably want to use [`method: BrowserType.connect`].
:::

:::warning
Playwright maintains a curated list of arguments for launching the browser. If you launch the browser without Playwright and do not pass the exact same arguments, some of Playwright functionality may be broken upon connecting to the browser.
:::

**Usage**

```js
Expand Down
12 changes: 12 additions & 0 deletions packages/playwright-client/types/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15351,6 +15351,10 @@ export interface BrowserType<Unused = {}> {
* If you are experiencing issues or attempting to use advanced functionality, you probably want to use
* [browserType.connect(endpoint[, options])](https://playwright.dev/docs/api/class-browsertype#browser-type-connect).
*
* **NOTE** Playwright maintains a curated list of arguments for launching the browser. If you launch the browser
* without Playwright and do not pass the exact same arguments, some of Playwright functionality may be broken upon
* connecting to the browser.
*
* **Usage**
*
* ```js
Expand All @@ -15377,6 +15381,10 @@ export interface BrowserType<Unused = {}> {
* If you are experiencing issues or attempting to use advanced functionality, you probably want to use
* [browserType.connect(endpoint[, options])](https://playwright.dev/docs/api/class-browsertype#browser-type-connect).
*
* **NOTE** Playwright maintains a curated list of arguments for launching the browser. If you launch the browser
* without Playwright and do not pass the exact same arguments, some of Playwright functionality may be broken upon
* connecting to the browser.
*
* **Usage**
*
* ```js
Expand Down Expand Up @@ -15407,6 +15415,10 @@ export interface BrowserType<Unused = {}> {
* If you are experiencing issues or attempting to use advanced functionality, you probably want to use
* [browserType.connect(endpoint[, options])](https://playwright.dev/docs/api/class-browsertype#browser-type-connect).
*
* **NOTE** Playwright maintains a curated list of arguments for launching the browser. If you launch the browser
* without Playwright and do not pass the exact same arguments, some of Playwright functionality may be broken upon
* connecting to the browser.
*
* **Usage**
*
* ```js
Expand Down
12 changes: 12 additions & 0 deletions packages/playwright-core/types/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15351,6 +15351,10 @@ export interface BrowserType<Unused = {}> {
* If you are experiencing issues or attempting to use advanced functionality, you probably want to use
* [browserType.connect(endpoint[, options])](https://playwright.dev/docs/api/class-browsertype#browser-type-connect).
*
* **NOTE** Playwright maintains a curated list of arguments for launching the browser. If you launch the browser
* without Playwright and do not pass the exact same arguments, some of Playwright functionality may be broken upon
* connecting to the browser.
*
* **Usage**
*
* ```js
Expand All @@ -15377,6 +15381,10 @@ export interface BrowserType<Unused = {}> {
* If you are experiencing issues or attempting to use advanced functionality, you probably want to use
* [browserType.connect(endpoint[, options])](https://playwright.dev/docs/api/class-browsertype#browser-type-connect).
*
* **NOTE** Playwright maintains a curated list of arguments for launching the browser. If you launch the browser
* without Playwright and do not pass the exact same arguments, some of Playwright functionality may be broken upon
* connecting to the browser.
*
* **Usage**
*
* ```js
Expand Down Expand Up @@ -15407,6 +15415,10 @@ export interface BrowserType<Unused = {}> {
* If you are experiencing issues or attempting to use advanced functionality, you probably want to use
* [browserType.connect(endpoint[, options])](https://playwright.dev/docs/api/class-browsertype#browser-type-connect).
*
* **NOTE** Playwright maintains a curated list of arguments for launching the browser. If you launch the browser
* without Playwright and do not pass the exact same arguments, some of Playwright functionality may be broken upon
* connecting to the browser.
*
* **Usage**
*
* ```js
Expand Down
Loading