Skip to main content

Configuring Your Appium Tests

Sauce Labs supports Appium to test your app on a mobile device in multiple ways:

Depending on which combination of environments you wish to apply to your testing, the Appium configurations may be different. This page provides descriptions for the settings that are applicable to each of the testing scenarios support for Appium on Sauce Labs.

What You'll Need

Creating an Appium Test

Here are the basic steps for creating an Appium test script for your app under test (AUT):

1. Set your app location

When you write an Appium test script, the most basic component is the capabilities object. This is where you set your test parameters, such as the mobile platform and operating system you want to test against.

Within that object, one of the required capabilities is the app capability: the path to your app (e.g., Sauce Storage, AWS, GitHub). One of the advantages of the Appium architecture is that the app you want to test can be hosted anywhere, from a local path to any other web host on the network, since the Appium server will send the commands it receives from the client to any app path you specify. Practically, you have three options.

To learn about App Storage on Sauce Labs, click here.


2. Create a WebDriver Instance

In this step, you'll create an Appium driver instance which points to a running Appium server (e.g., the servers on Sauce Labs). The WebDriver instance is the starting point for all uses of the Mobile JSON Wire Protocol.

You'll need to create an instance of the WebDriver interface using a constructor for either Android or iOS. For mobile native app tests, you set both the platform and browser to test against by setting the browserName capability.

Once you have created an instance of the WebDriver interface, you use this instance to invoke methods, such as tap and swipe, to access other interfaces used in basic test steps. You do so by assigning the instance to a variable when you create it, and by using that variable to invoke methods.

WebDriver Examples

These pseudo-code examples illustrate how to instantiate iOS and Android WebDriver objects in the various Appium language bindings.

Visit the java-client page for more information on the Java Appium language bindings.iOS
WebDriver driver = new iOSDriver<WebElement>( new URL("https://ondemand.us-west-1.saucelabs.com/wd/hub"), capabilities);
Android
WebDriver driver = new AndroidDriver<WebElement>( new URL("https://ondemand.us-west-1.saucelabs.com/wd/hub"), capabilities);

3. Locate App Elements

Next, locate an element within your app, such as a login button or a link. In order to find elements in a mobile environment, Appium implements a number of locator strategies that are specific to, or adaptations for, the particulars of a mobile device. Three are available for both Android and iOS:

The accessibility ID locator strategy is designed to read a unique identifier for a UI element. This has the benefit of not changing during localization or any other process that might change text. In addition, it can be an aid in creating cross-platform tests, if elements that are functionally the same have the same accessibility id.
  • For iOS, this is the accessibility identifier laid out by Apple here.
  • For Android, the accessibility id maps to the content-description for the element, as described here.
For both platforms getting an element, or multiple elements, by their accessibility id is usually the best method. It is also the preferred way, in replacement of the deprecated name strategy.The client libraries specific to Appium support getting elements by accessibility id.Example:
driver.find_element_by_accessibility_id('my_accessibility_identifier')

Best Practices for Identifying Application Elements

We recommend using an element locator that uniquely identifies the element, like an id or an accessibility id. class name and xpath are best used only when IDs are not available.

Multiple elements can have the same class name, and using xpath searches through the entire markup to find the element, which can slow down your tests.


4. Perform Action(s) on the App Elements

Once you've identified the mobile elements you want your test to interact with, the next step is to interact with them. You perform an action on a mobile element by invoking an interaction method on an instance of the WebElement interface.

In this example, we'll test a login button. The WebElement interface declares basic interaction methods including:

  • The sendKeys method, to enter text.
  • The clear method, to clear entered text.
  • The submit method, to submit a form.

This example first invokes the sendKeys method to enter text in the username and password elements, and then invokes the submit method to submit the login form. Enter a username and password:

emailInput.sendKeys("SauceIsAwesome@email.com");

The submit method can be invoked either on any text input element on a form, or on the form element itself. Submit Text Element:

emailInput.submit();

5. Anticipate App Response to the Action

When you click a Submit button, you know that you have to wait a second or two for your action to reach the server, and for the server to respond, before you do anything else. You want to anticipate the right response (i.e., successful login).

If you're trying to test the response, and what happens afterwards, then you need to build that waiting time into your test. Otherwise, the test might fail because the elements that are expected for the next step haven't loaded into the browser you.

The WebDriver API supports two basic techniques for anticipating browser response by waiting: implicit waits and explicit waits.

Implicit Waits Strategy

Implicit waits set a maximum time that the Appium server will continue trying to find an element. Using implicit waits is not recommended because app response times are not definitely predictable and fixed elapsed times are not applicable to all interactions. Using explicit waits requires more technical sophistication, but is a Sauce Labs best practice.

This example below illustrates how you could use an implicit wait to anticipate web browser response after submitting the login form:

driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

Explicit Waits Strategy

Explicit waits wait until an expected condition occurs on the web page, or until a maximum wait time elapses. To use an explicit wait, you create an instance of the WebDriverWait class with a maximum wait time, and you invoke its until method with an expected condition.

The WebDriver API provides an ExpectedConditions class with methods for various standard types of expected condition. These methods return an instance of an expected condition class. You can pass an invocation of these standard expected-condition methods as argument values to until method. You can also pass - in ways that your programming language and its WebDriver API support - any function, code block, or closure that returns a boolean value or an object reference to a found web element as an argument value to the until method. How this is done varies over programming languages. The until method checks repeatedly, until the maximum wait time elapses, for a true boolean return value or a non-null object reference, as an indication that the expected condition has occurred.

This example below illustrates how you could use an explicit wait to anticipate web browser response after submitting the login form.

import org.openqa.selenium.support.ui.ExpectedConditions; 
import org.openqa.selenium.support.ui.WebDriverWait; 
WebDriverWait wait = new WebDriverWait(driver, 10); WebElement messageElement = wait.until( ExpectedConditions.presenceOfElementLocated(By.id("loginResponse")) );
note

Do not mix implicit and explicit waits. Doing so can cause unpredictable wait times. For example setting an implicit wait of 10s and an explicit wait of 15 seconds, could cause a timeout to occur after 20 seconds.


6. Run Tests and Record Your Results

This is where you log whether your test passed, failed, or returned an error.

Running tests and recording test results is the ultimate purpose of your test script: you run tests in an automated test script in order to evaluate function and performance in the AUT, without requiring human interaction.

Test Frameworks

To run test and to record test results, you use methods of a test framework for your programming language. There are many available test frameworks, including the frameworks in the so-called XUnit family, which includes:

  • JUnit for Java
  • NUnit for C#
  • unittest or pyunit for Python
  • RSpec for Ruby

For some programming languages, test frameworks other than those in the XUnit family are common - for example, the RSpec framework for Ruby. Our sample test framework repos on GitHub contain over 60 examples of test frameworks set up to work with Sauce Labs.

Test Assertions

Most test frameworks implement the basic concept of an assertion, a method representing whether or not a logical condition holds after interaction with an AUT.

Test frameworks generally declare methods whose names begin with the term assert and end with a term for a logical condition (e.g., assertEquals in JUnit). Generally, when the logical condition represented by an assert method does not hold, an exception for the condition is thrown.

There are various approaches to using exceptions in most test frameworks. The SeleniumHQ documentation has more detailed information on using assertions and verifications in your tests.

Recording Test Results

Recording of test results can be done in various ways, supported by the test framework or by a logging framework for the programming language, or by both together. Selenium also supports taking screenshots of web browser windows as a helpful additional type of recording.

Because of the wide variations in recording technique, this beginning section omits recording, instead emphasizing a simple approach to applying a test using an assert method. See our sample test framework repos for examples of setting up test results reporting.

The following example runs a test by asserting that the login response message is equal to an expected success message:

import org.junit.jupiter.api.Assertions.assertEquals;

WebElement messageElement = driver.findElement(By.id("loginResponse"));
String message = messageElement.getText();
String successMsg = "Welcome to foo. You logged in successfully.";
assertEquals (message, successMsg);

7. Concluding Your Test

In this step, you'll shut down the connection to Sauce Labs.

quit Method

Conclude your test by invoking the quit method on an instance of the WebDriver interface (e.g., on the driver variable).

The quit method concludes a test by disposing of resources, which allows later tests to run without resources and app state affected by earlier tests. The quit method:

  • quits the web browser app, closing all web pages.
  • quits the WebDriver server, which interacts with the web browser.
  • releases driver, the variable referencing the unique instance of the WebDriver interface.

The following example invokes the quit method on the driver variable:

driver.quit();

Full Example Script

The following example includes code for all steps. The example also defines a Java test class Example, and its main method, so that the code can be run.

package com.yourcompany;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.remote.DesiredCapabilities;
import io.appium.java_client.android.AndroidDriver;
import java.net.MalformedURLException;
import java.net.URL;
import org.junit.jupiter.api.Assertions.assertEquals;
public class SampleSauceTest {

public static void main() throws MalformedURLException {
desiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setCapability("platformName", "Android");
capabilities.setCapability("deviceName", "Android GoogleAPI Emulator");
capabilities.setCapability("platformVersion", "10.0");
capabilities.setCapability("app", "storage:filename=swag-labs.apk");
capabilities.setCapability("browserName", "");
capabilities.setCapability("deviceOrientation", "portrait");
capabilities.setCapability("appiumVersion", "1.16.0");
WebDriver driver = new AndroidDriver<WebElement>( new URL("http://SAUCE_USERNAME:SAUCE_ACCESS_KEY@ondemand.us-west-1.saucelabs.com/wd/hub"), capabilities);

try {
WebElement emailInput = driver.findElement(By.id("fbemail"));
emailInput.sendKeys("SauceIsAwesome@email.com");
assertEquals(emailInput.getText(), "SauceIsAwesome@email.com");
} finally {
driver.quit();
}
}
}

Additional Resources