Search code examples
angularjsmobileios-simulatorappiumappium-ios

How can i configure in Appium the URL of an application?


I have the url of an application, (not the .ipa file), how can i configure this url in appium? i don't have the path for that file. The application is coded by Angular JS. enter image description here


Solution

  • I have solved my problem by 2 ways :

    1. I put in URL the path for * > /Debug-iphonesimulator/UICatalog.app

    2. Adding app : "safari" and i run appium with npm version 1.5.5 like that :

      appium --default-capabilities '{"app":"safari","browserName":"safari","appium-version":"1.5.1","platformName":"iOS","platformVersion":"9.3","deviceName":"iPad Air","nativeInstrumentsLib":true}' --command-timeout "0" --pre-launch --nodeconfig "/Users/me/nodeconfig.json" --launch-timeout "180000"