Troubleshooting Appium and MacOS Ventura

Appium version 1.x is not compatible with MacOS Ventura. If you updated your Mac to Ventura you must follow the steps below in order to properly run Mobile Designer.

  1. Open Terminal.

  2. Install Appium version 2 by running the following command.

    npm install -g appium@next
  3. Install Appiumdrivers for iOS and Android. To do this run the commands below.

    appium driver install xcuitest
    appium driver install uiautomator2
  4. Update Python by running the following command.

    brew upgrade python
  5. Install / update the Command Line Tools by running the following command.

    xcode-select --install
  6. Update OpenCV by running the following command.

    brew install opencv
  7. Execute Appium Doctor by running the following command.

    appium-doctor

  8. Validate that all required dependencies have a green tick.

  9. Run the following command to start the Appium server.

    appium server -p 4723 -a 0.0.0.0 -pa /wd/hub --allow-cor

    You must run the Appium Server using this command from now on.

After successfully updating to Appium version 2 you must Install and Configure Appium WebDriverAgent.