UI Testing using swift

Updated 29 September 2021

Save

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.

UI Testing using swift

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

UI Testing using swift

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.

UI Testing using swift

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.

 

author
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


Be the first to comment.

Start a Project


    Message Sent!

    If you have more details or questions, you can reply to the received confirmation email.

    Back to Home