UNPKG

appium-uiautomator2-driver

Version:
39 lines 879 B
import { commonCapConstraints } from 'appium-android-driver'; const UIAUTOMATOR2_CONSTRAINTS = { launchTimeout: { isNumber: true, }, uiautomator2ServerLaunchTimeout: { isNumber: true, }, uiautomator2ServerInstallTimeout: { isNumber: true, }, uiautomator2ServerReadTimeout: { isNumber: true, }, systemPort: { isNumber: true, }, mjpegServerPort: { isNumber: true, }, mjpegScreenshotUrl: { isString: true, }, skipServerInstallation: { isBoolean: true, }, disableSuppressAccessibilityService: { isBoolean: true, }, forceAppLaunch: { isBoolean: true, }, shouldTerminateApp: { isBoolean: true, }, ...commonCapConstraints, }; export default UIAUTOMATOR2_CONSTRAINTS; //# sourceMappingURL=constraints.js.map