feat(ts): interface RemoteBrowserOptions

This commit is contained in:
karishmas6
2024-06-01 11:35:18 +05:30
parent 659f4c506f
commit a1a42a7f0a

View File

@@ -10,3 +10,18 @@ export interface InterpreterSettings {
debug: boolean;
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
};