Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1.32 KB

real-devices.md

File metadata and controls

28 lines (19 loc) · 1.32 KB

Appium on real devices

Appium has preliminary support for real device testing.

To get started on a real device, you will need the following:

  1. An Apple Developer ID and a valid Developer Account with a configured distribution certificate and provisioning profile.
  2. An iPad or iPhone.
  3. The source code of your app.
  4. A Mac with XCode and the XCode Command Line Developer Tools

Provisioning Profile

A valid iOS Development Distribution Certificate and Provisioning Profile are necessary to test on a real device. You can find information about configuring these in the Apple documentation

You will also need to sign your app.

Running your tests with Appium

Once your device and app are configured, you can run tests on that device by passing the -U flag to server.js:

node server.js -U <UDID> --app <PATH_TO_APP>

This will start Appium and have Appium use the device to test the app.