docs: fix android launchBrowser.pkg option (#34262)
This commit is contained in:
parent
13bdd3c92f
commit
75d2661497
|
|
@ -136,7 +136,7 @@ Launches Chrome browser on the device, and returns its persistent context.
|
|||
|
||||
### option: AndroidDevice.launchBrowser.pkg
|
||||
* since: v1.9
|
||||
- `command` <[string]>
|
||||
- `pkg` <[string]>
|
||||
|
||||
Optional package name to launch instead of default Chrome for Android.
|
||||
|
||||
|
|
|
|||
10
packages/playwright-core/types/types.d.ts
vendored
10
packages/playwright-core/types/types.d.ts
vendored
|
|
@ -16607,11 +16607,6 @@ export interface AndroidDevice {
|
|||
*/
|
||||
colorScheme?: null|"light"|"dark"|"no-preference";
|
||||
|
||||
/**
|
||||
* Optional package name to launch instead of default Chrome for Android.
|
||||
*/
|
||||
command?: string;
|
||||
|
||||
/**
|
||||
* Specify device scale factor (can be thought of as dpr). Defaults to `1`. Learn more about
|
||||
* [emulating devices with device scale factor](https://playwright.dev/docs/emulation#devices).
|
||||
|
|
@ -16720,6 +16715,11 @@ export interface AndroidDevice {
|
|||
*/
|
||||
permissions?: Array<string>;
|
||||
|
||||
/**
|
||||
* Optional package name to launch instead of default Chrome for Android.
|
||||
*/
|
||||
pkg?: string;
|
||||
|
||||
/**
|
||||
* Network proxy settings.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue