iOS9 UI Tests Exploration Notes

iOS9 UI Tests Exploration Notes

What are UI Tests?

UI Tests is a Testing component that automatically tests UI and interactions

What are UI Tests good for?

It can realize functions such as automatically clicking a button, view, or automatically entering text by writing code or recording the developer's operation process and coding it.

Importance of UI Tests

In the actual development process, as the project grows bigger and more and more functions are added, it is very difficult to cover all test cases by manual operation alone. Especially after adding new functions, the old functions must be retested, which results in a lot of time spent on regression testing. A lot of repetitive work is generated here, and some of this repetitive work can be done automatically. At this time, UI Tests can help solve this problem.

How to use

Step 1: Add UI Tests

If it is a new project, you can directly check the option when creating the project, as shown below

If it is an existing project, you can add a UI Tests by adding a target. Click the Xcode menu and find the target column.

In the Test options, select Cocoa Touch UI Testing Bundle

At this time, the test component is added successfully, and its location in the project is shown in the figure below

Step 2: Create test code

Manually create test code

Open the test file and add the test code to the testExample() method

If you don't know how to write test code, you can refer to the automatically generated code style

Automatically generate test steps

After selecting the test file, click the Record button

Start the operation at this time, it will record your operation steps and generate test code

The following figure shows the test code automatically generated after some operations

At this time, you can analyze the syntax of the test code so that you can manually modify or write the test code yourself

Start Testing

Click the play button next to the testExample method and it will start the automatic test. You will see the app automatically operating.

The following is the syntax of the test element:

XCUIApplication:

Inheriting XCUIElement, this class manages the life cycle of the application and contains two main methods

launch():

Start the program

terminate():

Termination Program

XCUIElement:

Inherit NSObject and implement protocols XCUIElementAttributes, XCUIElementTypeQueryProvider

Can represent various UI elements of the system

exist:

It allows you to determine whether the current UI element exists. If you operate on a non-existent element, the test component will throw an exception and interrupt the test.

descendantsMatchingType(type:XCUIElementType)->XCUIElementQuery:

Get a certain type of element and its subclass collection

childrenMatchingType(type:XCUIElementType)->XCUIElementQuery:

Get a set of elements of a certain type, excluding its subclasses

The difference between these two methods is that when you only use the system UIButton, you can use childrenMatchingType. If you also want to query the child Buttons you defined, you must use descendantsMatchingType.

In addition, UI elements have some interactive methods

tap(): click

doubleTap(): double tap

pressForDuration(duration: NSTimeInterval): Press for a while. This is useful when you need to perform a delayed operation.

swipeUp(): This does not respond to the pan gesture. I haven't found where it can be used yet. It may also be a bug in the beta version. I won't explain it yet.

typeText(text: String): used for text input in textField and textView. Before using, make sure the text box has input focus. You can use the tap() function to make it have focus.

XCUIElementAttributes Protocol

It contains some properties in UIAccessibility

As shown below

It is convenient for you to view the characteristics of the current element. The identifier attribute can be used to directly read the element. However, this attribute has a bug in UITextField. The reason is not clear yet.

XCUIElementTypeQueryProvider Protocol

It contains most of the UI control types in the system, and you can get a certain type of UI collection by reading properties.

Some of the properties are shown below:

Create a Demo

First create a login page

Click the login button to log in and click the clear button to clear the text.

After successful login, you can go to the personal information page

The personal information page is as follows

Click the modify button to modify personal information, and click the Message button to view personal messages.

*** is the message interface

Testing the login page

Enter an incorrect account number

Verify the results

Close the warning window

Clear input records

Enter a valid account number

Verify the results

Go to the personal information page

The test code is as follows:

  1. func testLoginView() {
  2. let app = XCUIApplication()
  3. // Since there is a problem with the UITextField id, you can only read it by traversing the elements through the label method  
  4. let nameField = self.getFieldWithLbl( "nameField" )
  5. if self.canOperateElement(nameField) {
  6. nameField!.tap()
  7. nameField!.typeText( "xiaoming" )
  8. }
  9. let psdField = self.getFieldWithLbl( "psdField" )
  10. if self.canOperateElement(psdField) {
  11. psdField!.tap()
  12. psdField!.typeText( "1234321" )
  13. }
  14. // Read the corresponding button through the preset id of UIButton  
  15. let loginBtn = app.buttons[ "Login" ]
  16. if self.canOperateElement(loginBtn) {
  17. loginBtn.tap()
  18. }
  19. // Start a delay. Since the real login is an Internet request, the result cannot be obtained directly. The demo simulates the Internet request by delaying.  
  20. let window = app.windows.elementAtIndex( 0 )
  21. if self.canOperateElement(window) {
  22. // Delay for 3 seconds. If the login is successful after 3 seconds, the user will automatically enter the information page. If the login fails, a warning window will pop up.  
  23. window.pressForDuration( 3 )
  24. }
  25. // The alert id and labe cannot be used, it is probably a bug, so we can only judge by the number  
  26. if app.alerts.count > 0 {
  27. // Login failed  
  28. app.alerts.collectionViews.buttons[ "OK" ].tap()
  29. let clear = app.buttons[ "Clear" ]
  30. if self.canOperateElement(clear) {
  31. clear.tap()
  32. if self.canOperateElement(nameField) {
  33. nameField!.tap()
  34. nameField!.typeText( "sun" )
  35. }
  36. if self.canOperateElement(psdField) {
  37. psdField!.tap()
  38. psdField!.typeText( "111111" )
  39. }
  40. if self.canOperateElement(loginBtn) {
  41. loginBtn.tap()
  42. }
  43. if self.canOperateElement(window) {
  44. // Delay for 3 seconds. If the login is successful after 3 seconds, the user will automatically enter the information page. If the login fails, a warning window will pop up.  
  45. window.pressForDuration( 3 )
  46. }
  47. self.loginSuccess()
  48. }
  49. } else {
  50. // Login successful  
  51. self.loginSuccess()
  52. }
  53. }

There are a few points that require special attention:

1. When your element does not exist, it may still return an element object, but you cannot operate on it at this time

2. When the element you want to tap is blocked by the keyboard or UIAlertView, executing the tap method will throw an exception

For detailed implementation, please refer to demo: https://github.com/sunGd/demo/tree/master/iOS9/UITestDemo

Personal information page test

Change gender

Modify age

Modify mood

Save changes

The test code is as follows:

  1. func testInfo() {
  2. let app = XCUIApplication()
  3. let window = app.windows.elementAtIndex( 0 )
  4. if self.canOperateElement(window) {
  5. // Delay 2 seconds, loading data takes time  
  6. window.pressForDuration( 2 )
  7. }
  8. let modifyBtn = app.buttons[ "modify" ];
  9. modifyBtn.tap()
  10. let sexSwitch = app.switches[ "sex" ]
  11. sexSwitch.tap()
  12. let incrementButton = app.buttons[ "Increment" ]
  13. incrementButton.tap()
  14. incrementButton.tap()
  15. incrementButton.tap()
  16. app.buttons[ "Decrement" ].tap()
  17. let textView = app.textViews[ "feeling" ]
  18. textView.tap()
  19. app.keys[ "Delete" ].tap()
  20. app.keys[ "Delete" ].tap()
  21. textView.typeText( " abc " )
  22. // Click on the blank area  
  23. let clearBtn = app.buttons[ "clearBtn" ]
  24. clearBtn.tap()
  25. // Save data  
  26. modifyBtn.tap()
  27. window.pressForDuration( 2 )
  28. let messageBtn = app.buttons[ "message" ]
  29. messageBtn.tap();
  30. // Delay 1 second, pushing view takes time  
  31. window.pressForDuration( 1 )
  32. self.testMessage()
  33. }

There are two points that require special attention:

1. The focus position cannot be selected when the textview gets the focus

2. The trigger position of the tap event is the center of the view, so when the center of the view is blocked, consider using other views instead.

Personal message interface test

Click on the cell

The test code is as follows:

  1. func testMessage() {
  2. let app = XCUIApplication()
  3. let window = app.windows.elementAtIndex( 0 )
  4. if self.canOperateElement(window) {
  5. // Delay 2 seconds, loading data takes time  
  6. window.pressForDuration( 2 )
  7. }
  8. let table = app.tables
  9. table.childrenMatchingType(.Cell).elementAtIndex( 8 ).tap()
  10. table.childrenMatchingType(.Cell).elementAtIndex( 1 ).tap()
  11. }

One thing to note here:

1. Unable to obtain the element pointer of tableView temporarily

Summarize

In general, UI Tests can only be used to test some basic functions, verify whether the app functions can be used normally, and whether there are crashes. But it also has many shortcomings. The process of writing test cases is very cumbersome, the automatically generated code is almost impossible to run, the function is single, many test cases cannot be covered, and there are many bugs, which greatly limits the application of UI Tests in actual development. I hope that these problems can be fixed and more functions can be opened when the official version comes out.

<<:  Hidden details in iOS 9 beta 2 update

>>:  Programmer: Why don’t I recommend you to go to an outsourcing company?

Recommend

How can a promotion account achieve the best delivery effect? Here are 8 tips

Have you ever encountered this situation? You too...

How to make users addicted to your product? 5 steps!

"Information overload" is the current s...

What should I pay attention to when using someone else’s bidding account?

In the process of Baidu bidding account promotion...

The banned words for new advertising review in 2021 are announced!

Many times, we may be focused on how to be creati...

Modify the default font globally, which can also be done through reflection

[[205199]] sequence Using custom fonts on Android...

"What's Worth Buying" is so awesome, how does it operate its content?

What’s Worth Buying is also known as “Sex Maniac ...

15 marketing techniques, essential for marketing promotion!

Many years ago, Shi Yuzhu, the legendary marketer...

2022 Brand Online Marketing Traffic Observation

Looking back at 2021, the boundaries between e-co...

Analyst: Three reasons why Apple miscalculated its quarterly revenue

Speaking of mistakes, overestimating a company...