playwright-fluent
Version:
Fluent API around playwright
9 lines (8 loc) • 383 B
TypeScript
import { BrowserName } from '../actions';
import { DeviceName } from './device-names';
import { Device } from './device-descriptors';
export declare function getDevice(deviceName: DeviceName): Device | undefined;
export declare const defaultDevice: Device;
export declare function getBrowserArgsForDevice(device: Device): {
andBrowser: (browsername: BrowserName) => string[];
};