• Stars
    star
    18,045
  • Rank 1,409 (Top 0.03 %)
  • Language
    JavaScript
  • License
    Apache License 2.0
  • Created over 11 years ago
  • Updated 11 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Cross-platform automation framework for all kinds of apps, built on top of the W3C WebDriver protocol

Appium

NPM version Monthly Downloads

FOSSA Status

StandWithUkraine

Stand With Ukraine

Appium is an open-source, cross-platform test automation tool for native, hybrid, mobile web and desktop apps. Initially created to automate iOS and Android mobile applications Appium has grown to a full-featured platform that provides WebDriver-based automation possibilities for the whole set of different mobile and desktop platforms. See the full list of officially-supported and third-party drivers for more details.

‼️ Major documentation revision in progress

‼️ Appium core team does not maintain Appium 1.x anymore since the 1st of January 2022. All recent versions of officially supported platform drivers are not compatible to Appium 1.x anymore, and require Appium 2 to run. Please read the migration guide from 1.x to 2.0 to manage the Appium server.

Appium is in the final stages of a major revision (to version 2.0). As such, the documentation found around the web may not be correct. The current Appium 2.0 documentation is very much in progress. Currently, it can be found here.

Requirements

  • macOS, Linux or Windows operating system
  • Node.js 14+
  • NPM (Node Package Manager) 8+

These are only server requirements. Each driver might have its own requirements. Consider checking the corresponding driver tutorial for more details.

Server

To install Appium 2 server using Node Package Manager (npm) run the following command:

npm install -g appium@next

‼️ Running npm install -g appium would still install Appium 1 because version 2 is in its late beta stage.

Drivers

Appium supports app automation across a variety of platforms, like iOS, Android, and Windows. Each platform is supported by one or more "drivers", which know how to automate that particular platform. Since version 2.0 all drivers have been isolated from the Appium server app and can be managed independently using the appium driver command line interface.

In general, the drivers management in Appium 2 is as simple as:

# To install a new driver from npm
appium driver install --source=npm appium-xcuitest-driver[@<version>]
# To install a driver from a local folder (useful for developers)
appium driver install --source=local /Users/me/sources/appium-xcuitest-driver
# To install a new driver from github (hm, maybe it's time to publish it to NPM?)
appium driver install --source=github --package=appium-xcuitest-driver appium/appium-xcuitest-driver

# To list already installed drivers
appium driver list --installed

# To update a driver (it must be already installed)
appium driver update xcuitest

# To uninstall a driver (it won't last forever, wouldn't it?)
appium driver uninstall xcuitest

You can find a full list of officially-supported and third-party drivers at the current Appium 2.0 documentation.

Plugins

The concept of plugins is something new that has been added exclusively to Appium2. Plugins allow you to extend server functionality without changing the server code. Plugins could be managed similarly to drivers:

# To install an officially supported plugin
appium plugin install images
# To install a plugin from a local folder (useful for developers)
appium plugin install --source=local /Users/me/sources/images
# To install a new plugin from npm
appium plugin install --source=npm appium-device-farm

# To list already installed plugins
appium plugin list --installed

# To update a plugins (it must be already installed)
appium plugin update appium-device-farm

# To uninstall a plugin
appium plugin uninstall appium-device-farm

The main difference between drivers and plugins is that the latter must be explicitly enabled on server startup after it was installed (drivers are enabled by default after installation):

appium server --use-plugins=device-farm,images

You can find a full list of officially-supported and third-party plugins at the current Appium 2.0 documentation.

Server Command Line Interface

In order to start sending commands to Appium over the wire it must be listening on the URL where your client library expects it to listen. Use the following commands to run and configure Appium server:

# Start the server on the default port and host (e.g. http://0.0.0.0:4723/)
appium server
# Start the server on the given port, host and use the base path prefix (the default prefix is /)
appium server -p 9000 -a 127.0.0.1 -pa /wd/hub

# Get the list of all supported command line parameters.
# This list would also include descriptions of driver-specific
# command line arguments for all installed drivers.
# Each driver and plugin must have their command line arguments
# exposed in a special JSON schema declared as a part of the corresponding
# package.json file.
appium server --help

Appium supports execution of parallel server processes as well as parallel driver sessions within single server process. Refer the corresponding driver documentations regarding which mode is optimal for the particular driver or whether it supports parallel sessions.

Why Appium?

  1. You usually don't have to recompile your app or modify it in any way, due to the use of standard automation APIs on all platforms.
  2. You can write tests with your favorite dev tools using any WebDriver-compatible language such as Java, JavaScript, Python, Ruby, C# with the Selenium WebDriver API. There are also various third party client implementations for other languages.
  3. You can use any testing framework.
  4. Some drivers, like xcuitest and uiautomator2 ones have built-in mobile web and hybrid app support. Within the same script, you can switch seamlessly between native app automation and webview automation, all using the WebDriver model that's already the standard for web automation.
  5. You can run your automated tests locally and in a cloud. There are multiple cloud providers that support various Appium drivers (mostly targeting iOS and Android mobile automation).
  6. Appium Inspector allows visual debugging of automated tests and could be extremely useful for beginners.

Investing in the WebDriver protocol means you are betting on a single, free, and open protocol for testing that has become a web standard. Don't lock yourself into a proprietary stack.

For example, if you use Apple's XCUITest library without Appium you can only write tests using Obj-C/Swift, and you can only run tests through Xcode. Similarly, with Google's UiAutomator or Espresso, you can only write tests in Java/Kotlin. Appium opens up the possibility of true cross-platform native app automation, for mobile and beyond. Finally!

If you're new to Appium or want a more comprehensive description of what this is all about, please read our Intro to Appium.

Quickstart

Check out our Quickstart guide to get going with Appium.

There is also a sample code that contains many examples of tests in a variety of different languages!

Documentation

For prettily-rendered docs, please visit Appium Documentation. You can always find the full list of Appium doc pages at Appium's GitHub Repo as well.

Contributing

Please take a look at our contribution documentation for instructions on how to build, test, and run Appium from the source.

Roadmap

Interested in where Appium is heading in the future? Check out the Roadmap

Project History, Credits & Inspiration

User Forums

Announcements and debates often take place on the Discussion Group, be sure to sign up!

Troubleshooting

Please find the troubleshooting guide at the corresponding driver repository/documentation.

License

FOSSA Status

More Repositories

1

appium-desktop

Appium Server in Desktop GUIs for Mac, Windows, and Linux
JavaScript
4,649
star
2

python-client

Python language bindings for Appium
Python
1,608
star
3

java-client

Java language binding for writing Appium Tests, conforms to W3C WebDriver Protocol
Java
1,144
star
4

appium-inspector

A GUI inspector for mobile apps and more, powered by a (separately installed) Appium server
JavaScript
881
star
5

appium-xcuitest-driver

Appium iOS driver, backed by Apple XCTest
JavaScript
700
star
6

appium-docker-android

Appium Server setup to automate android testing on real devices
Shell
566
star
7

appium-uiautomator2-driver

Appium driver for Android UIAutomator2
JavaScript
482
star
8

appium-flutter-driver

Appium Flutter Driver is a test automation tool for Flutter apps on multiple platforms/OSes. Appium Flutter Driver is part of the Appium mobile test automation tool maintained by community
TypeScript
415
star
9

dotnet-client

Extension to the official Selenium dotnet webdriver
C#
361
star
10

appium-uiautomator2-server

Appium UiAutomator/UiObject2-based server for Android UI automation. This module is used by appium-uiautomator2-driver component
Java
317
star
11

appium-adb

Wrapper around adb used by appium + helper libs
JavaScript
268
star
12

appium-android-driver

Common methods collection used by Android drivers
JavaScript
238
star
13

android-apidemos

A fork of Google's Android ApiDemos application, used for testing Appium
Java
230
star
14

ruby_lib

💎 Ruby library for Appium
Ruby
212
star
15

appium-for-mac

[deprecated] Application for automating a mac app with JSON wire protocol
Objective-C
190
star
16

appium-espresso-driver

Espresso integration for Appium
Kotlin
173
star
17

appium-doctor

[Deprecated] Please use https://github.com/appium/appium/tree/master/packages/doctor
JavaScript
129
star
18

appium-ios-device

Tools for interacting with iOS devices
JavaScript
110
star
19

io.appium.settings

App for dealing with Android settings
Java
110
star
20

appium-mac2-driver

Next-gen Appium macOS driver, backed by Apple XCTest
Objective-C
107
star
21

appium-ios-simulator

Module for interacting with iOS simulators
JavaScript
92
star
22

appium-base-driver

Base class for an Appium driver
JavaScript
82
star
23

appium-idb

idb integration for Appium
JavaScript
72
star
24

ios-uicatalog

Apple UICatalog App
Objective-C
69
star
25

appium-chromedriver

Node.js wrapper around Chromedriver
JavaScript
64
star
26

node-simctl

Node wrapper around Apple's simctl binary
JavaScript
60
star
27

mitmproxy-java

A bridge between Python's mitmproxy and Java programs. Built on top of mitmproxy-node
Java
60
star
28

ruby_console

🎁 Appium Ruby Console
Ruby
45
star
29

appium-remote-debugger

Module for dealing with Remote Debugger protocol
JavaScript
42
star
30

appium_capybara

Gem enabling appium support in capybara
Ruby
40
star
31

appium-mac-driver

[deprecated] Mac application driver for Appium
JavaScript
36
star
32

ios-test-app

iOS app for testing
Objective-C
34
star
33

selenium-swift

selenium bindings for the swift programming language
Swift
33
star
34

ruby_lib_core

Core library for the Ruby client
Ruby
32
star
35

node-teen_process

A slightly more grown-up version of Node's child_process
JavaScript
27
star
36

node-adb-client

A direct-to-device ADB client implementation in Node
JavaScript
26
star
37

appium-safari-driver

Safari browser support for Appium
JavaScript
21
star
38

appium.io

[deprecated] The public front-end for Appium
CSS
21
star
39

appium-support

Support libs used across appium packages.
JavaScript
17
star
40

appium-xcode

Xcode related utilities. Get version number and path to executable.
JavaScript
16
star
41

appium-geckodriver

Support for Geckodriver (Firefox driver) within Appium
JavaScript
14
star
42

sample-apps

Sample app manager, for testing
JavaScript
13
star
43

appium-chromium-driver

An Appium driver for the Chrome browser
JavaScript
12
star
44

VodQAReactNative

Sample react native app demoing components and gestures
JavaScript
10
star
45

screenshooter

Screenshot application for Android
Java
10
star
46

appium-fake-driver

A fake Appium driver used for testing and demonstration
JavaScript
8
star
47

droiddriver_examples

Java
6
star
48

DynamicApp

Titanium app generating random code + command injector.
JavaScript
6
star
49

appium-gulp-plugins

Custom plugins used across appium modules
JavaScript
5
star
50

io.appium.gappium.sampleapp

Appium Sample App for Cordova Test Automation (Gappium)
JavaScript
5
star
51

appium-test-support

A collection of test utility lib used across Appium packages
JavaScript
4
star
52

appium-build-store

Temporary store for Appium builds, for sub-package CI systems
4
star
53

dump2json

Converts UIAutomator XML dump to JSON for Appium.
Java
4
star
54

gps-demo-app

Android GPS demo from http://www.impressive-artworx.de/tutorials/android/gps_tutorial_1.zip
Java
4
star
55

appium-event-parser

Node CLI script to help parse event timing output from Appium scripts
JavaScript
4
star
56

appium-gui-libs

Code shared between various Appium GUI projects (Appium Desktop Server, Appium Inspector)
JavaScript
4
star
57

perl-client

Perl
3
star
58

workshop

To be used when people do Appium workshops
JavaScript
3
star
59

eslint-config-appium

Shared configuration for ESLint
JavaScript
3
star
60

clean_apk

APK used to clean up between tests for Appium.
Java
3
star
61

python-client-sphinx

Docs repo for Appium Python Client
3
star
62

worms

Issue tracker for Apple bugs affecting Appium
2
star
63

appium-ios

iOS-specific packages for Appium
JavaScript
2
star
64

ios-webview-app

Webview app for testing appium
Objective-C
2
star
65

blog

A GH powered Appium blog
1
star
66

dmg-template

dmg template for building appium-dot-app
Objective-C
1
star
67

appium.github.com

Appium.io
JavaScript
1
star
68

ios

Appium mono repo containing iOS specific packages.
1
star
69

appium_thor

Appium Thor helpers for appium's gems
Ruby
1
star
70

appiumlogs

Logs from the #appium IRC channel on freenode.net
Shell
1
star
71

packweb

Tools for maintaining projects with large numbers of packages
JavaScript
1
star
72

appium-package-master

A set of tools to create and manage appium packages.
JavaScript
1
star
73

jobs

Appium job board
1
star
74

test_runner

Ruby test runner for Appium
Ruby
1
star
75

appium-benchmarks

A suite of exercises designed to evaluate the performance of an Appium server or service
TypeScript
1
star