Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the best way to do automated UI testing on the iPhone? [closed]

What is the best way to do automated UI testing on the iPhone?

___ is to iPhone as Selenium is to web apps

like image 471
user128807 Avatar asked Nov 05 '22 22:11

user128807


1 Answers

There's in-built SDK support for automated UI testing via UIAutomation:

http://developer.apple.com/library/ios/#documentation/DeveloperTools/Reference/UIAutomationRef/Introduction/Introduction.html

Write your tests in JavaScript, and execute them via instruments. The link above should get you started.

like image 108
lxt Avatar answered Nov 12 '22 21:11

lxt