appium-chromium-driver
Version:
Appium driver for Chromium-based browsers that work with Chromedriver
34 lines (31 loc) • 583 B
text/typescript
import type {Constraints} from '@appium/types';
export const desiredCapConstraints = {
chromedriverPort: {
isNumber: true,
},
useSystemExecutable: {
isBoolean: true,
},
executable: {
isString: true,
},
executableDir: {
isString: true,
},
verbose: {
isBoolean: true,
},
logPath: {
isString: true,
},
autodownloadEnabled: {
isBoolean: true,
},
disableBuildCheck: {
isBoolean: true,
},
browserName: {
isString: true,
},
} as const satisfies Constraints;
export type CDConstraints = typeof desiredCapConstraints;