module Appium::Android::Command

def shell(command, arguments)

Parameters:
  • arguments (Array) -- Arguments for the adb command
  • command (String) -- Command for "adb shell"
def shell(command, arguments)
  args = { command: command, args: arguments }
  # --relaxed-security
  @driver.execute_script 'mobile: shell', args
end