Start a Project

UI Testing using swift

User Interface Testing ensures that the user interface behaves properly when expected actions are performed. XCUITests hook into your application’s accessibility elements to read values, trigger actions, and check existence. The Xcode UI test runner will not see an element if it is not visible in the accessibility hierarchy. By writing UI tests, you’ll unintentionally enhance your app’s accessibility. To know more about UI Testing click here.

Let’s implement UI testing in the app.

For this, I have created a simple app where users can login from the first page and on the second page showing all the country lists in a tableview and when the user clicks on a row it shows details of this country.

Now create UI Testing Bundle target for the test case.

After creating Target the Xcode automatically creates a directory with some files.

Now add code for UI testing.

XCUIApplication provide a proxy which can launch, monitor, and terminate app in the UI Testing.
TextFields is part if UIElement groups which help to access UITextFiled form page.
WaitForExistence use to hold screen for a duration.
Tap  to click the element like button.
TypeText use to set value.

Now run the test code.

I hope this code will help you better to understand UI Testing in Swift. If you feel any doubt or query please comment below.

Thanks for the read this blog and if you want to visit my other blog click here.

 

Exit mobile version