Skip to content

Latest commit

 

History

History

README.md

Testing android apps

A project with examples of using integration testing in android applications (web, native and hybrid).

Usage

  1. Install Android Studio

  2. Create android virtual device with API level 35 and run it

  3. Use Node.JS version specified in .nvmrc:

nvm use
  1. Install dependencies:
npm ci
  1. Install UiAutomator2 Driver for appium:
./node_modules/.bin/appium driver install uiautomator2
  1. Run Appium in separate terminal tab:
npx appium -p 4444 --relaxed-security
  1. Run Testplane tests:
npx testplane

For more information on how to automate testing in android applications can be found in this guide.