Doubts to download file from emulator using mobile katalon project

Hi all, I have doubts related to how to download a file from emulator running on my local machine, I’ve read that you can use a driver.pullfile (Appium) but in my project when I’m opening an Apk, I don’t have an AndroidDriver instance. I only use Mobile.startapplication.
I can access them through adb commands but I would like to know if there is a Katalon method to do that, thanks a lot!!!

Hi,

I will reach internal team and see if anyone can help.

1 Like

maybe using Mobile.executeMobileCommand?

it works but im recieving a security warning

String command = “mobile:shell”
Map args = ImmutableMap.of(
“command”, “ls”,
“args”,“/storage/emulated/0/Download/”,
)
result = Mobile.executeMobileCommand(command, args)
WebUI.comment(result.toString())

‘An unknown server-side error occurred while processing the command. Original error: Potentially insecure feature ‘adb_shell’ has not been enabled’

can i avoid this error through katalon ide?
thanks.

just what i need.