GithubHelp home page GithubHelp logo

gaoyiyeah / appium Goto Github PK

View Code? Open in Web Editor NEW

This project forked from appium/appium

0.0 0.0 0.0 132.05 MB

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

Home Page: http://appium.io/

License: Apache License 2.0

Shell 0.63% JavaScript 73.44% Ruby 0.03% Python 0.04% TypeScript 24.94% CSS 0.01% HTML 0.77% Handlebars 0.14%

appium's Introduction

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.

‼️ The current Appium 2.0 documentation can be found here.

‼️ 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, and require Appium 2 to run. Please read the migration guide from 1.x to 2.0 to manage the Appium server.

‼️ If you still use the deprecated Appium Desktop containing the built-in server then you won't be able to upgrade to Appium 2. Consider switching to Appium Inspector instead.

Requirements

  • macOS, Linux or Windows operating system
  • Node.js 16+. Any relevant LTS release should work just fine.
  • 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 i --location=global appium

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

npm install --location=global appium@latest

‼️ Make sure Appium 1 is fully uninstalled before upgrading it to Appium 2 (npm uninstall --location=global appium). Unexpected errors might appear if this has not been done.

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.

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

appium's People

Contributors

jlipps avatar imurchie avatar boneskull avatar bootstraponline avatar renovate[bot] avatar sebv avatar dpgraham avatar kazucocoa avatar renovate-bot avatar sourishkrout avatar mykola-mokhnach avatar jonahss avatar penguinho avatar admc avatar triager avatar moizjv avatar santiycr avatar bernii avatar maudineormsby avatar greenkeeper[bot] avatar dylanlacey avatar scottdixon avatar snevesbarros avatar onioni avatar rgonalo avatar christian-bromann avatar dependabot-preview[bot] avatar srinivasantarget avatar filmaj avatar brainsik avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.