UNPKG

appium-chromium-driver

Version:

Appium driver for Chromium-based browsers that work with Chromedriver

20 lines 674 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getDefaultDriverDir = getDefaultDriverDir; const strongbox_1 = require("@appium/strongbox"); /** * Name for the strongbox storage for this driver. * Note: Changing this name will be a breaking change. */ const LOCAL_PACKAGE_STORAGE_NAME = 'appium-chromium-driver'; /** * Get the default directory for storing MSEdgeDriver executables. * @returns The default directory path. */ function getDefaultDriverDir() { const s = (0, strongbox_1.strongbox)(LOCAL_PACKAGE_STORAGE_NAME, { suffix: 'msedgedrivers', }); return s.container; } //# sourceMappingURL=storage.js.map