parent
69e90f38c7
commit
9d40f619c4
|
|
@ -999,6 +999,7 @@ disable timeout.
|
|||
If specified, traces are saved into this directory.
|
||||
|
||||
## browser-option-devtools
|
||||
* deprecated: Use [debugging tools](../debug.md) instead.
|
||||
- `devtools` <[boolean]>
|
||||
|
||||
**Chromium-only** Whether to auto-open a Developer Tools panel for each tab. If this option is `true`, the
|
||||
|
|
|
|||
3
packages/playwright-core/types/types.d.ts
vendored
3
packages/playwright-core/types/types.d.ts
vendored
|
|
@ -13172,6 +13172,7 @@ export interface BrowserType<Unused = {}> {
|
|||
/**
|
||||
* **Chromium-only** Whether to auto-open a Developer Tools panel for each tab. If this option is `true`, the
|
||||
* `headless` option will be set `false`.
|
||||
* @deprecated Use [debugging tools](https://playwright.dev/docs/debug) instead.
|
||||
*/
|
||||
devtools?: boolean;
|
||||
|
||||
|
|
@ -13576,6 +13577,7 @@ export interface BrowserType<Unused = {}> {
|
|||
/**
|
||||
* **Chromium-only** Whether to auto-open a Developer Tools panel for each tab. If this option is `true`, the
|
||||
* `headless` option will be set `false`.
|
||||
* @deprecated Use [debugging tools](https://playwright.dev/docs/debug) instead.
|
||||
*/
|
||||
devtools?: boolean;
|
||||
|
||||
|
|
@ -20270,6 +20272,7 @@ export interface LaunchOptions {
|
|||
/**
|
||||
* **Chromium-only** Whether to auto-open a Developer Tools panel for each tab. If this option is `true`, the
|
||||
* `headless` option will be set `false`.
|
||||
* @deprecated Use [debugging tools](https://playwright.dev/docs/debug) instead.
|
||||
*/
|
||||
devtools?: boolean;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue