Method: Appium::Core::Base::Driver#pull_file
- Defined in:
- lib/appium_lib_core/common/base/driver.rb
#pull_file(path) ⇒ Base64-decoded
Pull a file from the remote device. On Android the application under test should be built with debuggable flag enabled in order to get access to its container on the internal file system.
497 498 499 500 |
# File 'lib/appium_lib_core/common/base/driver.rb', line 497 def pull_file(path) # TODO: use 'mobile: pullFile' internally @bridge.pull_file(path) end |