1

I need your help. I want to connect the device locally (not an emulator). enter image description here

But I stopped at this problem that I can't solve.enter image description here

Kosta
  • 11
  • 1
  • 3

2 Answers2

0

If your app is not installed on the test device then you need to provide appium:app capability with the path to the *.apk file. If your app is already installed on the device then you can try adding appium:noReset capability with value true.

drunkencheetah
  • 354
  • 1
  • 8
  • Thanks for the answer! It turned out to be much easier than I thought. I didn't specify practically anything in capability except platformName,Device Name and everything worked. – Kosta Nov 24 '22 at 10:57
0

hey have you tried adding this capability?

desired_caps['appWaitActivity'] = '*'

for pycharm and

appium:appWaitActivity text *

into appiuminspector this worked for me.

Uzi Cohen
  • 1
  • 2