Home > front end >  Original error: Bad app: App paths need to be absolute or an URL to a compressed app file:
Original error: Bad app: App paths need to be absolute or an URL to a compressed app file:

Time:11-10

enter image description here

I want to open demo app using appium (in ios simulator using X code)

CodePudding user response:

You are referring a .swift file instead of app. Changing it to "app": "/path/to/my.app" might work.

CodePudding user response:

You are referring a .swift file instead of .app file. Try writing this

"appium:app": "/Users/pritwindersingh/Library/Developer/Xcode/DerivedData/WebDriverAgent-bpndfqzifmteusepnbmywejsnvgw/Build/Products/Debug-iphonesimulator/IntegrationApp.app" 
  • Related