Overview
In this tutorial, we will create a JUnit Test Case in Java, using the Appium library for automation of iOS applications.
Description
The following automated test is taken from the tutorials for iOS provided by Appium.
Please note
This example is found in the public Github repository in https://github.com/appium/tutorial/tree/master/projects/java_ios. It also provides examples for other languages.
Requirement
- Appium must be running in the machine with iOS SDK.
appium
The class implementing the automated tests needs to be updated in order to properly set up the IP of the Appium server along with the required iOS version.
The sample project contains two classes with the automated Tests. Below is one of them:
package appium.tutorial.ios; import appium.tutorial.ios.util.AppiumTest; import org.openqa.selenium.WebElement; import java.util.ArrayList; import java.util.List; import static appium.tutorial.ios.util.Helpers.*; public class AutomatingASimpleActionTest extends AppiumTest { @org.junit.Test public void one() throws Exception { text("Various uses of UIButton").click(); text_exact("Buttons"); } @org.junit.Test public void two() throws Exception { wait(for_text("Various uses of UIButton")).click(); wait(for_text_exact("Buttons")); } @org.junit.Test public void three() throws Exception { WebElement cell_1 = wait(for_text(2)); String page_title = cell_1.getAttribute("name").split(",")[0]; cell_1.click(); wait(for_text_exact(page_title)); } @org.junit.Test public void four() throws Exception { List<String> cell_names = new ArrayList<String>(); for (WebElement cell : tags("TableCell")) { cell_names.add(cell.getAttribute("name")); } for (String name : cell_names) { wait(for_text_exact(name)).click(); wait(for_text_exact(name.split(",")[0])); back(); } } }
Actually, the above class and others, such as Helpers.java, had to be changed due to updates introduced by Apple in the automation API with XCUITest.
Tests can be run using Maven.
mvn clean test
Since the previous command generates multiple JUnit XML files, we may need to merge them into a single XML file so it can be submitted into a Test Execution more easily. That can be achieved by using the junit-merge utility.
junit-merge -o results.xml -d target/surefire-reports/
After successfully running the Test cases and generating the aggregated JUnit XML report (e.g., results.xml), it can be imported to Xray (either by the REST API or through the Import Execution Results action within the Test Execution).
Each JUnit's Test Case is mapped to a Generic Test in Jira, and the Generic Test Definition field contains the name of the package, the class and the method name that implements the Test Case. The summary of each Test issue is filled out with the name of the method corresponding to the JUnit Test.
The Execution Details of the Generic Test contains information about the Test Suite, which in this case corresponds to the Test Case class, including its namespace.
References
- https://github.com/appium/tutorial/tree/master/projects/java_ios
- http://appium.io
- https://www.npmjs.com/package/junit-merge