feat(ts): interface RemoteBrowserOptions
This commit is contained in:
@@ -10,3 +10,18 @@ export interface InterpreterSettings {
|
|||||||
debug: boolean;
|
debug: boolean;
|
||||||
params?: any;
|
params?: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Options for the {@link BrowserManagement.launch} method.
|
||||||
|
* Wraps the Playwright's launchOptions and adds an extra browser option.
|
||||||
|
* The browser option determines which browser to launch as Playwright
|
||||||
|
* supports multiple browsers. (chromium, firefox, webkit)
|
||||||
|
* -- Possible expansion for the future of the browser recorder --
|
||||||
|
* @category Types
|
||||||
|
*/
|
||||||
|
export interface RemoteBrowserOptions {
|
||||||
|
browser: BrowserType
|
||||||
|
launchOptions: LaunchOptions
|
||||||
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user