Error in Automating ios app
See original GitHub issueThe problem
While trying to automate an iOS app for which I have the ipa file , I am not able to launch my app using the set of capabilities
Environment
- Appium version (or git revision) that exhibits the issue: Appium v1.8.2-beta
- Last Appium version that did not exhibit the issue (if applicable): NA
- Desktop OS/version used to run Appium: Mac
- Node.js version (unless using Appium.app|exe): 8.11.1
- Mobile platform/version under test: Ipad
- Real device or emulator/simulator: Real device
- Appium CLI or Appium.app|exe: Appium CLI
Details
I need to launch my iOS app using the appium
Link to Appium logs
https://gist.github.com/prateekchawla/b418301e5d864c77cb87a0084e9183de
Code To Reproduce Issue [ Good To Have ]
DesiredCapabilities capabilities = new DesiredCapabilities(); capabilities.SetCapability(CapabilityType.Platform, "Mac"); capabilities.SetCapability("platformName", "iOS"); capabilities.SetCapability("automationName", "XCUITest"); capabilities.SetCapability("deviceName", DeviceName); capabilities.SetCapability("udid", DeviceUdId); capabilities.SetCapability("newCommandTimeout", 360); capabilities.SetCapability("wdaLocalPort", WdalocalPort); capabilities.SetCapability("wdaConnectionTimeout", 600000); capabilities.SetCapability("usePrebuiltWDA", true); capabilities.SetCapability("showXcodeLog", true); capabilities.SetCapability("app", "users/testing/Desktop/RastreatorApp.ipa");
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (1 by maintainers)
Top GitHub Comments
users\testing\Desktop\RastreatorApp.ipa
is not a valid path. Please supply the fully qualified path… probably something like/Users/testing/Desktop/RastreatorApp.ipa
.This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.