appium-flutter-driver
Version:
41 lines (40 loc) • 594 B
text/typescript
export const desiredCapConstraints = {
app: {
isString: true,
},
avd: {
isString: true,
},
maxRetryCount: {
isNumber: true,
},
platformName: {
inclusionCaseInsensitive: [
'iOS',
'Android',
],
isString: true,
presence: true,
},
retryBackoffTime: {
isNumber: true,
},
udid: {
isString: true,
},
observatoryWsUri: {
isString: true,
},
skipPortForward: {
isBoolean: true
},
adbPort: {
isNumber: true
},
remoteAdbHost: {
isString: true
},
forwardingPort: {
isNumber: true
},
} as const;