You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It outputs "Xcode is not installed" even when Xcode is actually installed and just xcode-select does not point to the installed Xcode app path.
We should suggest users to download Xcode 13 even if they are setting up for mobile-web, since Xcode 13 would also work with Appium while Xcode 14 won't.
If --appium flag is used, ask the users to download Xcode 13, even when they have Xcode 14 already installed.
Check whether Xcode 14 works with Appium v2 (beta), and if so, we can also give them an option to use Appium v2 instead of downloading Xcode 13, if Xcode 14 is already installed.
The text was updated successfully, but these errors were encountered:
Regarding the last point (Xcode 14 with Appium 2), the combination works fine but the current Wikipedia app we are testing against is unable to open topic detail page on iOS 16.x
So, maybe we should just default to Appium 2 (beta), since it's also the only supported version of Appium.
To run iOS tests with Xcode 14 using Appium 1, you need to replace the existing appium-webdriveragent (one that comes with Appium 1) with v4.9.0. To do that, follow the below steps:
Download WebDriverAgent v4.9.0 (zip file) and extract it.
Go to:
For global Appium installation: /usr/local/lib/node_modules/appium/node_modules/
For local Appium installation: /path/to/your/project/node_modules/appium/node_modules/
If you use nvm to install node: /Users/UserName/.nvm/versions/node/vx.x.x/lib/node_modules/appium/node_modules/
Delete all the contents of appium-webdriver saving the build folder only.
Copy the contents of the folder extracted in first step and paste into appium-webdriver folder.
Listing a few known issues with iOS setup:
xcode-select
does not point to the installed Xcode app path.--appium
flag is used, ask the users to download Xcode 13, even when they have Xcode 14 already installed.The text was updated successfully, but these errors were encountered: