Appium is a popular and widely used tool that can be employed to automate mobile-app testing for both the Android and iOS platforms. It can be used to automate native, m.sites, and hybrid applications. It internally uses WebDriver's JSON wire protocol.
Automating iOS and Android tests using Appium
Automating iOS Application tests
For automating iOS app tests, Appium uses XCTest or UI Automation (for older iOS versions):
- XCTest: You can use XCTest to create and run unit tests, performance tests, and UI tests for your iOS applications built for iOS 9.3 and higher. It integrates with Xcode's testing workflow for testing the iOS application. Appium internally uses XCTest for automating the iOS applications.
- UI Automation...