Skip to main content

WebDriverIO With Appium

Tutorial To Run Your First Test On LambdaTest


In this topic, you will learn how to configure and run your WebDriverIO automation testing scripts with Appium on LambdaTest Real Device Cloud platform.

Objective


By the end of this topic, you will be able to:

  1. Run a sample automation script of WebDriverIO for application testing with Appium on LambdaTest.
  2. Run test cases in parallel using WebDriverIO with Appium to reduce build times.
  3. Learn more about Desired Capabilities for Appium testing.
  4. Explore advanced features of LambdaTest.
Sample repo

All the code samples in this documentation can be found on LambdaTest's Github Repository. You can either download or clone the repository to quickly run your tests. Image View on GitHub

Pre-requisites


Before you start performing App automation testing with Appium, please make sure:

  • You have access to LambdaTest username and accessKey. If you have not registered yet, you can do the same by visiting our website. You will be able to access the credentials in the LambdaTest Profile
  • Download and install NodeJS from official NodeJS website. You should be having NodeJS v6 or newer.
  • Make sure you are using the latest version of JavaScript.
  • Install npm from the official npm website.

Run your first test


1. Upload your application

Upload your iOS application (.ipa file) or android application (.apk file) to the LambdaTest servers using our REST API. You need to provide your Username and AccessKey in the format Username:AccessKey in the cURL command for authentication. Make sure to add the path of the appFile in the cURL request. Here is an example cURL request to upload your app using our REST API:

Using App File from System:

curl -u "undefined:undefined" -X POST "https://manual-api.lambdatest.com/app/upload/realDevice" -F "appFile=@"/Users/macuser/Downloads/proverbial_android.apk"" -F "name="proverbial_app""

Using App URL:

curl -u "YOUR_LAMBDATEST_USERNAME:YOUR_LAMBDATEST_ACCESS_KEY" -X POST "https://manual-api.lambdatest.com/app/upload/realDevice" -F "url=:https://prod-mobile-artefacts.lambdatest.com/assets/docs/proverbial_android.apk" -F "name=Proverbial_App"
tip
  • If you do not have any .apk or .ipa file, you can run your sample tests on LambdaTest by using our sample 🔗 Android app or sample 🔗 iOS app.
  • Response of above cURL will be a JSON object containing the APP_URL of the format - lt://APP123456789123456789 and will be used in the next step.

2. Clone the sample project

Clone the LambdaTest’s 🔗 LT-appium-nodejs-webdriverio repository and navigate to the code directory as shown below:

git clone https://github.com/LambdaTest/LT-appium-nodejs-webdriverio
cd LT-appium-nodejs-webdriverio

3. Set up your authentication

Make sure you have your LambdaTest credentials with you to run test automation scripts on LambdaTest. To obtain your access credentials, purchase a plan or access the Automation Dashboard. Then, set LambdaTest Username and Access Key in environment variables with following commands.

export LT_USERNAME=undefined \
export LT_ACCESS_KEY=undefined

4. Write your automation script

To get started, here is an example of sample test on our sample Android App shown below. You can write or add your own Appium automation scripts in specs directory to run different tests on your app.

specs/ios-test.js
describe("Proverbial APK", () => {
it("Changes color", async () => {
var color = await $("id=color");
await color.waitForDisplayed({ timeout: 30000 });
await color.click();
await color.click();
});

it("Changes text", async () => {
var text = await $("id=Text");
await text.waitForDisplayed({ timeout: 30000 });
await text.click();
});

it("Toast", async () => {
var toast = await $("id=toast");
await toast.waitForDisplayed({ timeout: 30000 });
await toast.click();
});

it("Notification", async () => {
var nf = await $("id=notification");
await nf.waitForDisplayed({ timeout: 30000 });
await nf.click();
});

it("Geolocation", async () => {
var geo = await $("id=geoLocation");
await geo.waitForDisplayed({ timeout: 30000 });
await geo.click();

driver.back();
});

it("SpeedTest", async () => {
var st = await $("id=speedTest");
await st.waitForDisplayed({ timeout: 30000 });
await st.click();

await browser.pause(10000);
driver.back();
});

it("Browser", async () => {
var browser = await $("id=Browser");
await browser.waitForDisplayed({ timeout: 30000 });
await browser.click();

let el7 = await $("id=url");
await el7.click();
await el7.setValue("https://www.lambdatest.com/");
driver.back();
});
});

Configuring Your Test Capabilities

You need to update your capabilities in *.conf.js files. In this sample project, we have provided the examples for running tests on both Android and iOS apps. You can find the configs for both iOS and Android in the ios-sample and android-sample directories correspondingly.

We are passing platform name, platform version, device name and app url (generated earlier) along with other capabilities like build name and test name via capabilities object. You need to pass the path of your test script in specs object to run your own automation script. The capabilities object in the sample code for a single test are defined as:

ios-sample/ios-single.conf.js
exports.config = {
user: process.env.LT_USERNAME || "YOUR_USERNAME",
key: process.env.LT_ACCESS_KEY || "YOUR_ACCESS_KEY",

updateJob: false,
specs: ["./../specs/ios-test.js"], //path of your test script
exclude: [],

capabilities: [
{
build: "NodeJS WebDriverIO iOS",
name: "Sample Test - WebDriverIO",
isRealMobile: true,
deviceName: "iPhone 13 Pro",
platformVersion: "15",
platformName: "iOS",
app: "YOUR_APP_URL", //Enter your app (.ipa) url
},
],

logLevel: "info",
coloredLogs: true,
screenshotPath: "./errorShots/",
baseUrl: "",
waitforTimeout: 10000,
connectionRetryTimeout: 90000,
connectionRetryCount: 3,
path: "/wd/hub",
hostname: "mobile-hub.lambdatest.com",
port: 80,

framework: "mocha",
mochaOpts: {
ui: "bdd",
timeout: 20000,
},
};
Note

5. Execute your test case

  1. Navigate to the corresponding directory based on your app.
cd ios
  1. Install the required dependencies using the following command:
npm i
  1. Execute the following command to run your test on LambdaTest platform:
npm run single
info

Your test results would be displayed on the test console (or command-line interface if you are using terminal/cmd) and on the 🔗 LambdaTest App Automation Dashboard.


--- id: appium-nodejs-webdriverio title: WebDriverIO With Appium sidebar_label: WebDriverIO description: Now you can run your Appium automation scripts using with WebDriverIO on LambdaTest Real Device Cloud Platform of 3000+ real mobile devices. keywords: - appium - java - lambdatest java - framework on lambdatest - testng - app testing - real devices image: /assets/images/og-images/appium-testing-og-image.jpg url: https://www.lambdatest.com/support/docs/appium-nodejs-webdriverio/ site_name: LambdaTest slug: appium-nodejs-webdriverio/ ---

Tutorial To Run Your First Test On LambdaTest


In this topic, you will learn how to configure and run your WebDriverIO automation testing scripts with Appium on LambdaTest Real Device Cloud platform.

Objective


By the end of this topic, you will be able to:

  1. Run a sample automation script of WebDriverIO for application testing with Appium on LambdaTest.
  2. Run test cases in parallel using WebDriverIO with Appium to reduce build times.
  3. Learn more about Desired Capabilities for Appium testing.
  4. Explore advanced features of LambdaTest.
Sample repo

All the code samples in this documentation can be found on LambdaTest's Github Repository. You can either download or clone the repository to quickly run your tests. Image View on GitHub

Pre-requisites


Before you start performing App automation testing with Appium, please make sure:

  • You have access to LambdaTest username and accessKey. If you have not registered yet, you can do the same by visiting our website. You will be able to access the credentials in the LambdaTest Profile
  • Download and install NodeJS. You should be having NodeJS v6 or newer. Click here to download.
  • Make sure you are using the latest version of JavaScript.
  • Install npm from the official website by clicking here.

Run your first test


1. Upload your application

Upload your iOS application (.ipa file) or android application (.apk file) to the LambdaTest servers using our REST API. You need to provide your Username and AccessKey in the format Username:AccessKey in the cURL command for authentication. Make sure to add the path of the appFile in the cURL request. Here is an example cURL request to upload your app using our REST API:

Using App File from System:

curl -u "YOUR_LAMBDATEST_USERNAME:YOUR_LAMBDATEST_ACCESS_KEY" -X POST "https://manual-api.lambdatest.com/app/upload/realDevice" -F "appFile=@"/Users/macuser/Downloads/proverbial_android.apk"" `}

Using App URL:

curl -u "YOUR_LAMBDATEST_USERNAME:YOUR_LAMBDATEST_ACCESS_KEY" -X POST "https://manual-api.lambdatest.com/app/upload/realDevice" -F "url=:https://prod-mobile-artefacts.lambdatest.com/assets/docs/proverbial_android.apk" -F "name=Proverbial_App"
tip
  • If you do not have any .apk or .ipa file, you can run your sample tests on LambdaTest by using our sample 🔗 Android app or sample 🔗 iOS app.
  • Response of above cURL will be a JSON object containing the APP_URL of the format - lt://APP123456789123456789 and will be used in the next step.

2. Clone the sample project

Clone the LambdaTest’s 🔗 LT-appium-nodejs-webdriverio repository and navigate to the code directory as shown below:

git clone https://github.com/LambdaTest/LT-appium-nodejs-webdriverio
cd LT-appium-nodejs-webdriverio

3. Set up your authentication

Make sure you have your LambdaTest credentials with you to run test automation scripts on LambdaTest. To obtain your access credentials, purchase a plan or access the Automation Dashboard. Then, set LambdaTest Username and Access Key in environment variables with following commands.

export LT_USERNAME=undefined \
export LT_ACCESS_KEY=undefined

4. Write your automation script

To get started, here is an example of sample test on our sample Android App shown below. You can write or add your own Appium automation scripts in specs directory to run different tests on your app.

specs/ios-test.js
describe("Proverbial APK", () => {
it("Changes color", async () => {
var color = await $("id=color");
await color.waitForDisplayed({ timeout: 30000 });
await color.click();
await color.click();
});

it("Changes text", async () => {
var text = await $("id=Text");
await text.waitForDisplayed({ timeout: 30000 });
await text.click();
});

it("Toast", async () => {
var toast = await $("id=toast");
await toast.waitForDisplayed({ timeout: 30000 });
await toast.click();
});

it("Notification", async () => {
var nf = await $("id=notification");
await nf.waitForDisplayed({ timeout: 30000 });
await nf.click();
});

it("Geolocation", async () => {
var geo = await $("id=geoLocation");
await geo.waitForDisplayed({ timeout: 30000 });
await geo.click();

driver.back();
});

it("SpeedTest", async () => {
var st = await $("id=speedTest");
await st.waitForDisplayed({ timeout: 30000 });
await st.click();

await browser.pause(10000);
driver.back();
});

it("Browser", async () => {
var browser = await $("id=Browser");
await browser.waitForDisplayed({ timeout: 30000 });
await browser.click();

let el7 = await $("id=url");
await el7.click();
await el7.setValue("https://www.lambdatest.com/");
driver.back();
});
});

Configuring Your Test Capabilities

You need to update your capabilities in *.conf.js files. In this sample project, we have provided the examples for running tests on both Android and iOS apps. You can find the configs for both iOS and Android in the ios-sample and android-sample directories correspondingly.

We are passing platform name, platform version, device name and app url (generated earlier) along with other capabilities like build name and test name via capabilities object. You need to pass the path of your test script in specs object to run your own automation script. The capabilities object in the sample code for a single test are defined as:

ios-sample/ios-single.conf.js
exports.config = {
user: process.env.LT_USERNAME || "YOUR_USERNAME",
key: process.env.LT_ACCESS_KEY || "YOUR_ACCESS_KEY",

updateJob: false,
specs: ["./../specs/ios-test.js"], //path of your test script
exclude: [],

capabilities: [
{
build: "NodeJS WebDriverIO iOS",
name: "Sample Test - WebDriverIO",
isRealMobile: true,
deviceName: "iPhone 13 Pro",
platformVersion: "15",
platformName: "iOS",
app: "YOUR_APP_URL", //Enter your app (.ipa) url
},
],

logLevel: "info",
coloredLogs: true,
screenshotPath: "./errorShots/",
baseUrl: "",
waitforTimeout: 10000,
connectionRetryTimeout: 90000,
connectionRetryCount: 3,
path: "/wd/hub",
hostname: "mobile-hub.lambdatest.com",
port: 80,

framework: "mocha",
mochaOpts: {
ui: "bdd",
timeout: 20000,
},
};
Note
  • You must add the generated APP_URL to the "app" capability in the config file.
  • You can generate capabilities for your test requirements with the help of our inbuilt 🔗 Capabilities Generator tool. A more Detailed Capability Guide is available here 📄 .

5. Execute your test case

  1. Navigate to the corresponding directory based on your app.
cd ios
  1. Install the required dependencies using the following command:
npm i
  1. Execute the following command to run your test on LambdaTest platform:
npm run single
info

Your test results would be displayed on the test console (or command-line interface if you are using terminal/cmd) and on the 🔗 LambdaTest App Automation Dashboard.