/** * * Pulls a file from the device. * * :pullFile.js browser.pullFile('/data/local/tmp/file.txt') * * * @param {String} path device path to file * * @see https://github.com/appium/appium/blob/master/docs/en/appium-bindings.md#pull-file * @type mobile * @for ios, android * */ import { ProtocolError } from '../utils/ErrorHandler' export default function pullFile (path) { if (typeof path !== 'string') { throw new ProtocolError('pullFile requires a parameter (path to file) from type string') } return this.requestHandler.create({ path: '/session/:sessionId/appium/device/pull_file', method: 'POST' }, { path }) }