forked from appium/appium.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path01_ruby_appium_native_ios_automation.html
1309 lines (1028 loc) · 60.1 KB
/
01_ruby_appium_native_ios_automation.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
---
<!DOCTYPE html>
<html>
<head>
{% capture extra %}
<link href="../css/template.css" media="all" rel="stylesheet" type="text/css" />
<link href="../css/font-awesome-4.0.3/css/font-awesome.css" media="all" rel="stylesheet" type="text/css" />
<link href="../css/custom.css" media="all" rel="stylesheet" type="text/css" />{% endcapture %}
{% include head.html extra=extra %}
<link href="../css/template.css" media="all" rel="stylesheet" type="text/css" />
<link href="../css/font-awesome-4.0.3/css/font-awesome.css" media="all" rel="stylesheet" type="text/css" />
<link href="../css/custom.css" media="all" rel="stylesheet" type="text/css" />
</head>
<body>
{% include navbar.html %}
<div class="markdown-body">
<p><div class="toc"><div class="toc-title">Table of Contents</div><ul><ul><li><a href="#Module-1---Ruby-Appium-Native-iOS-Automation">Module 1 - Ruby Appium Native iOS Automation</a></li></ul></ul><ul><ul><ul><li><a href="#Chapter-1---Getting-started-with-appium">Chapter 1 - Getting started with appium</a></li></ul></ul></ul><ul><ul><ul><ul><li><a href="#Introduction">Introduction</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Install">Install</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Bash-Profile">Bash Profile</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Troubleshooting">Troubleshooting</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#SSL-Issues">SSL Issues</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Maven-on-OS-X-10.9">Maven on OS X 10.9</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Corrupt-ruby-gems">Corrupt ruby gems</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Ruby-IDE">Ruby IDE</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Helpful-Links">Helpful Links</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Summary">Summary</a></li></ul></ul></ul></ul><ul><ul><ul><li><a href="#Chapter-2---Appium-Ruby-Console">Chapter 2 - Appium Ruby Console</a></li></ul></ul></ul><ul><ul><ul><ul><li><a href="#2-Introduction">Introduction</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Compiling-the-iOS-sample-app">Compiling the iOS sample app</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Prebuilt-iOS-Sample-App">Prebuilt iOS Sample App</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Starting-the-Console">Starting the Console</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Page-Command">Page Command</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Ending-the-session">Ending the session</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Appium.app-Inspector">Appium.app Inspector</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#2-Helpful-Links">Helpful Links</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#2-Summary">Summary</a></li></ul></ul></ul></ul><ul><ul><ul><li><a href="#Chapter-3---Writing-your-first-test">Chapter 3 - Writing your first test</a></li></ul></ul></ul><ul><ul><ul><ul><li><a href="#3-Introduction">Introduction</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Automating-a-simple-action">Automating a simple action</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Page-Object-Pattern">Page Object Pattern</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Running-the-test-with-Rake">Running the test with Rake</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#3-Helpful-Links">Helpful Links</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#3-Summary">Summary</a></li></ul></ul></ul></ul><ul><ul><ul><li><a href="#Chapter-4---Running-tests">Chapter 4 - Running tests</a></li></ul></ul></ul><ul><ul><ul><ul><li><a href="#4-Introduction">Introduction</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Flaky-Gem">Flaky Gem</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Running-Locally">Running Locally</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Running-using-Jenkins-CI">Running using Jenkins CI</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Running-on-Sauce">Running on Sauce</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#4-Helpful-Links">Helpful Links</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#4-Summary">Summary</a></li></ul></ul></ul></ul><ul><ul><ul><li><a href="#Chapter-5---Conclusion">Chapter 5 - Conclusion</a></li></ul></ul></ul><ul><ul><ul><ul><li><a href="#5-Introduction">Introduction</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Additional-Resources">Additional Resources</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Community-Support">Community Support</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Professional-Support">Professional Support</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#Searching-the-Source-Code">Searching the Source Code</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#5-Helpful-Links">Helpful Links</a></li></ul></ul></ul></ul><ul><ul><ul><ul><li><a href="#5-Summary">Summary</a></li></ul></ul></ul></ul></div></p>
<h2><a class="anchor" id="Module-1---Ruby-Appium-Native-iOS-Automation" href="#Module-1---Ruby-Appium-Native-iOS-Automation"><i class="fa fa-link"></i></a>Module 1 - Ruby Appium Native iOS Automation</h2>
<h3><a class="anchor" id="Chapter-1---Getting-started-with-appium" href="#Chapter-1---Getting-started-with-appium"><i class="fa fa-link"></i></a>Chapter 1 - Getting started with appium</h3>
<h4><a class="anchor" id="Introduction" href="#Introduction"><i class="fa fa-link"></i></a>Introduction</h4>
<p>Appium enables iOS and Android automation using Selenium WebDriver.
The same WebDriver bindings can be used across web and mobile.</p>
<ul><li>Open Source
<ul><li>Apache 2.0 License</li>
</ul></li>
<li>Cross Platform
<ul><li>Test Android on OS X, Windows, Linux</li>
<li>Test iOS on OS X</li>
</ul></li>
<li>Native, Hybrid, Mobile Web</li>
<li>Any language. Any framework.</li>
<li>No app changes or source code access required.</li>
</ul><p>In this chapter, we'll be preparing to automate a native iOS application using
appium with Ruby.</p>
<hr /><h4><a class="anchor" id="Install" href="#Install"><i class="fa fa-link"></i></a>Install</h4>
<p>This document is written for OS X 10.9.2 or better.</p>
<table><thead><tr><th align="right">Tool</th>
<th align="left">Description</th>
</tr></thead><tbody><tr><td align="right">OS X</td>
<td align="left">The mac operating system</td>
</tr><tr><td align="right">Xcode</td>
<td align="left">Apple's integrated development environment</td>
</tr><tr><td align="right">rvm</td>
<td align="left">The ruby version manager. Helps install ruby</td>
</tr><tr><td align="right">gem</td>
<td align="left">The rubygems command. A package manager for Ruby</td>
</tr><tr><td align="right">Java</td>
<td align="left">A programming language and software development kit</td>
</tr><tr><td align="right">bundler</td>
<td align="left">Enables managing gem dependencies</td>
</tr><tr><td align="right">brew</td>
<td align="left">Helps install software on Macs</td>
</tr><tr><td align="right">npm</td>
<td align="left">Node's package manager</td>
</tr><tr><td align="right">grunt</td>
<td align="left">A command line task runner for node.js</td>
</tr><tr><td align="right">ant</td>
<td align="left">A java build system</td>
</tr><tr><td align="right">maven</td>
<td align="left">A java build system with improved dependency management</td>
</tr></tbody></table><p>Note that <a href="http://appium.io/">Appium.app</a> provides a ready to run version of
appium. If you're using Appium.app then there's no need to run from source unless
you want to use the latest and greatest.</p>
<p>Install <a href="https://developer.apple.com/downloads/index.action">Xcode 5.1 from the App Store</a>.</p>
<p>Install the command line build tools within Xcode. (Xcode -> Preferences -> Downloads).
Alternatively, download them directly from <a href="https://developer.apple.com/downloads/index.action">Apple</a>.</p>
<ul><li>Install <a href="http://www.oracle.com/technetwork/java/javase/downloads/index.html">Java 7</a>.</li>
<li>Install the latest stable release of Ruby.</li>
</ul><pre>$ \curl -sSL https://get.rvm.io | bash -s stable
$ rvm install ruby</pre>
<ul><li>Make sure RVM is using the correct Ruby by default</li>
</ul><pre>$ rvm list
$ rvm --default use 2.1.1</pre>
<ul><li>If you have an old ruby/rvm, you can upgrade with</li>
</ul><pre>$ rvm get head
$ rvm autolibs homebrew
$ rvm install ruby</pre>
<ul><li>Check that it's installed properly by printing the ruby version.</li>
</ul><p><code>$ ruby --version</code></p>
<ul><li>Update RubyGems and Bundler.</li>
</ul><pre>gem update --system ;\
gem install --no-rdoc --no-ri bundler ;\
gem update ;\
gem cleanup</pre>
<ul><li>Check that RubyGems is >= 2.1.5</li>
</ul><pre>$ gem --version
2.2.2</pre>
<ul><li>Install <code>appium_console</code> gem.</li>
</ul><pre>gem uninstall -aIx appium_lib ;\
gem uninstall -aIx appium_console ;\
gem install --no-rdoc --no-ri appium_console</pre>
<ul><li>Install <a href="https://github.com/appium/flaky">flaky</a> gem.</li>
</ul><pre>gem uninstall -aIx flaky ;\
gem install --no-rdoc --no-ri flaky</pre>
<ul><li>Install <a href="http://mxcl.github.io/homebrew/">brew</a></li>
</ul><p><code>ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"</code></p>
<ul><li>Install <a href="http://nodejs.org/">nodejs</a> using brew.</li>
</ul><pre>brew update ;\
brew upgrade node ;\
brew install node</pre>
<ul><li>Node should be <code>v0.10.26</code> or better.
Don't use the big green install button on <a href="http://nodejs.org/">nodejs.org</a> or
all npm commands will require sudo.</li>
</ul><p><code>$ node --version</code></p>
<p><code>$ npm --version</code></p>
<ul><li>Install grunt.</li>
</ul><p><code>npm install -g grunt grunt-cli</code></p>
<ul><li>Run the version command from the appium folder. If you're not in that
folder, the grunt version will not display.</li>
</ul><pre>$ grunt --version
grunt-cli v0.1.13
grunt v0.4.2</pre>
<ul><li>Install <a href="http://ant.apache.org/">ant</a> if it's not already installed.</li>
<li>Install <a href="http://maven.apache.org/download.cgi">maven 3.1.1 or better</a> if
it's not already installed. Old maven will not work.</li>
</ul><pre>$ ant -version
Apache Ant(TM) version 1.8.2 compiled on June 20 2012
$ mvn -version
Apache Maven 3.1.1 (0728685237757ffbf44136acec0402957f723d9a; 2013-09-17 11:22:22-0400)</pre>
<ul><li>Clone appium</li>
</ul><p><code>$ git clone git://github.com/appium/appium.git</code></p>
<ul><li>Run reset.sh. When running reset.sh, make sure to be on Xcode 5.0.2 for
best results. You may have problems if you reset on Xcode 4.6.3 and then
switch to a newer Xcode.</li>
</ul><p><code>$ cd appium; ./reset.sh</code></p>
<p>If you see config errors, try cleaning git. <code>git clean -dfx; git reset --hard</code></p>
<p>You can also reset by platform. <code>./reset.sh --ios</code></p>
<ul><li>Authorize for testing. Must run reset.sh as mentioned above before
running the grunt task. If you're only testing Android, this can be skipped.</li>
</ul><blockquote>
<p>sudo `which grunt` authorize</p>
</blockquote>
<ul><li>Start appium.</li>
</ul><p><code>$ node .</code></p>
<h4><a class="anchor" id="Bash-Profile" href="#Bash-Profile"><i class="fa fa-link"></i></a>Bash Profile</h4>
<ul><li>You may have to add grunt as well <code>/usr/local/share/npm/bin/grunt</code></li>
</ul><pre>$ nano ~/.bash_profile
PATH=$PATH:/Applications/apache-ant-1.8.4/bin
PATH=$PATH:/usr/local/share/npm/bin/
export JAVA_HOME="`/System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java_home`"
export PATH</pre>
<h4><a class="anchor" id="Troubleshooting" href="#Troubleshooting"><i class="fa fa-link"></i></a>Troubleshooting</h4>
<ul><li>If install fails, keep trying to install a few times.</li>
</ul><p>When using <code>Appium.app</code> make sure to set Appium -> Preferences... -> Check
"Use External Appium Package" and set it to the path of Appium cloned from GitHub.</p>
<p>Fix permission errors. npm shouldn't require sudo.</p>
<pre>$ brew uninstall node
$ brew install node
$ rm -rf ./node_modules
$ rm -rf "/Users/`whoami`/.npm"
$ rm -rf /usr/local/lib/node_modules/
$ ./reset.sh --ios
$ ./reset.sh --android</pre>
<ul><li><a href="https://gist.github.com/bootstraponline/5580587">Helper bash methods</a></li>
</ul><h4><a class="anchor" id="SSL-Issues" href="#SSL-Issues"><i class="fa fa-link"></i></a>SSL Issues</h4>
<blockquote>
<p>Unable to download data from <a href="https://rubygems.org/">https://rubygems.org/</a> - SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed</p>
</blockquote>
<ul><li><a href="http://railsapps.github.io/openssl-certificate-verify-failed.html">Fix SSL issues</a> with:</li>
</ul><pre>$ rvm osx-ssl-certs update all
$ rvm osx-ssl-certs status all</pre>
<h4><a class="anchor" id="Maven-on-OS-X-10.9" href="#Maven-on-OS-X-10.9"><i class="fa fa-link"></i></a>Maven on OS X 10.9</h4>
<pre>$ brew update
$ brew install maven</pre>
<h4><a class="anchor" id="Corrupt-ruby-gems" href="#Corrupt-ruby-gems"><i class="fa fa-link"></i></a>Corrupt ruby gems</h4>
<p>If you see:</p>
<blockquote>
<p>invalid gem: package is corrupt, exception while verifying: undefined method</p>
</blockquote>
<p>Then run <code>$ rm -rf ~/.rvm</code> and reinstall RVM.</p>
<h4><a class="anchor" id="Ruby-IDE" href="#Ruby-IDE"><i class="fa fa-link"></i></a>Ruby IDE</h4>
<p>I recommend the <a href="http://www.jetbrains.com/ruby/whatsnew/index.html">RubyMine IDE</a>.
For professional work, features such as auto completion, jump to definition,
and refactoring are valuable.</p>
<p>If you have a preferred editor already, then feel free to continue using it.</p>
<hr /><h4><a class="anchor" id="Helpful-Links" href="#Helpful-Links"><i class="fa fa-link"></i></a>Helpful Links</h4>
<table><thead><tr><th align="right">Link</th>
<th align="left">Summary</th>
</tr></thead><tbody><tr><td align="right"><a href="https://www.npmjs.org/">npm</a></td>
<td align="left">The main registry for npm packages. Appium is published here.</td>
</tr><tr><td align="right"><a href="http://rubygems.org/">rubygems</a></td>
<td align="left">The main registry for Ruby gems. The appium ruby bindings are published here.</td>
</tr><tr><td align="right"><a href="http://rvm.io/">RVM</a></td>
<td align="left">RVM's homepage. Extensive documentation is available.</td>
</tr><tr><td align="right"><a href="https://www.ruby-lang.org/en/">Ruby</a></td>
<td align="left">The Ruby language homepage. Useful for keeping up to date with Ruby releases.</td>
</tr></tbody></table><hr /><h4><a class="anchor" id="Summary" href="#Summary"><i class="fa fa-link"></i></a>Summary</h4>
<p>We learned about the appium project and how it's useful for automating mobile
applications. Then we installed all the necessary software to begin
automation. Finally, helpful links were reviewed.</p>
<p>In the next chapter, we'll look at writing tests interactively using a console.</p>
<hr /><h3><a class="anchor" id="Chapter-2---Appium-Ruby-Console" href="#Chapter-2---Appium-Ruby-Console"><i class="fa fa-link"></i></a>Chapter 2 - Appium Ruby Console</h3>
<h4><a class="anchor" id="2-Introduction" href="#2-Introduction"><i class="fa fa-link"></i></a>Introduction</h4>
<p>A read-eval-print loop, REPL, is a great way to learn a new technology.
In this chapter, we'll be using the Appium Ruby Console (ARC) to write tests.</p>
<p>An open source mobile app will be used to demonstrate the standard test workflow.
We'll also look at a desktop app that makes writing tests a bit easier.</p>
<hr /><h4><a class="anchor" id="Compiling-the-iOS-sample-app" href="#Compiling-the-iOS-sample-app"><i class="fa fa-link"></i></a>Compiling the iOS sample app</h4>
<p><code>cd</code> into the appium repository root. Running <code>./reset.sh --ios --dev</code> will
build the sample iOS app UICatalog.</p>
<p>The UICatalog app is <a href="https://developer.apple.com/library/ios/samplecode/UICatalog/UICatalog.zip">provided by Apple</a>.</p>
<p>After seeing <code>---- reset.sh completed successfully ----</code>, you'll find <code>UICatalog.app</code>
at this location:</p>
<blockquote>
<p>/appium/sample-code/apps/UICatalog/build/Release-iphonesimulator/UICatalog.app</p>
</blockquote>
<p>It's important to note that this app is built for the simulator.
Builds for physical iOS devices only work on physical iOS devices.</p>
<p>Appium supports physical devices however this tutorial focuses
on virtual devices.</p>
<hr /><h4><a class="anchor" id="Prebuilt-iOS-Sample-App" href="#Prebuilt-iOS-Sample-App"><i class="fa fa-link"></i></a>Prebuilt iOS Sample App</h4>
<p>To make it easier to get started, I've uploaded a prebuilt version of the
iOS sample app. If for some reason this app doesn't work on your system, you
may need to build from source. Instructions for building the sample app from
source are in the previous lesson.</p>
<p>UICatalog.app is available <a href="https://github.com/appium/ruby_lib/raw/master/ruby_lib_ios/UICatalog.app.zip">as a zip</a>. I
recommend unzipping the app before using it with appium.</p>
<hr /><h4><a class="anchor" id="Starting-the-Console" href="#Starting-the-Console"><i class="fa fa-link"></i></a>Starting the Console</h4>
<p>To start the Appium Ruby Console for use with iOS, the app path is required.</p>
<p>In this case we're developing locally, so let's create an appium.txt with
that path.</p>
<pre>$ nano appium.txt
DEVICE="ios"
APP_PATH="./UICatalog.app"</pre>
<p>The appium.txt contains two important pieces of information.</p>
<p>DEVICE is the platform we're automating. In this case,
we're going to automate ios.</p>
<p>APP_PATH is the path to UICatalog.app. The ruby console is able to parse
relative paths. This path will then be converted to an absolute path which
appium uses to identify which app to install on the simulator.</p>
<p>In a new terminal tab, start the appium server using <code>node .</code> In a different
tab, run the <code>arc</code> command from within the directory containing appium.txt.
The arc console will read appium.txt, launch the iOS simulator,
and allow you to enter commands.</p>
<hr /><h4><a class="anchor" id="Page-Command" href="#Page-Command"><i class="fa fa-link"></i></a>Page Command</h4>
<p>With the console started, the next step is to begin automation.
The <code>page</code> command prints a list of elements that are of interest.</p>
<pre>[1] pry(main)> page
post /execute
{
:script => "UIATarget.localTarget().frontMostApp().windows()[0].getTree()"
}
post /execute
{
:script => "UIATarget.localTarget().frontMostApp().windows()[1].getTree()"
}
post /execute
{
:script => "mobile: getStrings"
}
UIANavigationBar
name: UICatalog
UIAStaticText
name, label, value: UICatalog
UIATableView
name, label: Empty list
value: rows 1 to 10 of 12
UIATableCell
name: Buttons, Various uses of UIButton
UIAStaticText
name, label: Buttons, Various uses of UIButton
UIATableCell
name: Controls, Various uses of UIControl
UIAStaticText
name, label: Controls, Various uses of UIControl
UIATableCell
name: TextFields, Uses of UITextField
UIAStaticText
name, label: TextFields, Uses of UITextField
UIATableCell
name: SearchBar, Use of UISearchBar
UIAStaticText
name, label: SearchBar, Use of UISearchBar
UIATableCell
name: TextView, Use of UITextField
UIAStaticText
name, label: TextView, Use of UITextField
UIATableCell
name: Pickers, Uses of UIDatePicker, UIPickerView
UIAStaticText
name, label: Pickers, Uses of UIDatePicker, UIPickerView
UIATableCell
name: Images, Use of UIImageView
UIAStaticText
name, label: Images, Use of UIImageView
UIATableCell
name: Web, Use of UIWebView
UIAStaticText
name, label: Web, Use of UIWebView
UIATableCell
name: Segment, Various uses of UISegmentedControl
UIAStaticText
name, label: Segment, Various uses of UISegmentedControl
UIATableCell
name: Toolbar, Uses of UIToolbar
UIAStaticText
name, label: Toolbar, Uses of UIToolbar</pre>
<p>Let's review in detail what this output means.</p>
<p><code>[1] pry(main)> page</code> The 1 tells us this is the first command we've entered
during this pry session. The terminal will show <code>[2] pry(main)></code> which means
it's ready for the second command. Pry is an open source
<a href="http://pryrepl.org/">runtime development console</a> that's used by appium
ruby console.</p>
<p>The next set of information is the network traffic.</p>
<pre>{
:script => "UIATarget.localTarget().frontMostApp().windows()[0].getTree()"
}
post /execute
{
:script => "UIATarget.localTarget().frontMostApp().windows()[1].getTree()"
}
post /execute
{
:script => "mobile: getStrings"
}</pre>
<p>In response to the page command, three network requests were sent. The
<a href="http://rubygems.org/gems/selenium-webdriver">selenium-webdriver gem</a> is used
to generate these requests.</p>
<p>After that is the result of the page command.</p>
<pre>UIAStaticText
name, label, value: UICatalog</pre>
<p><code>UIAStaticText</code> is the <a href="https://developer.apple.com/library/ios/documentation/ToolsLanguages/Reference/UIAStaticTextClassReference/UIAStaticText/UIAStaticText.html">iOS specific name</a>
for the element. Appium uses <a href="https://github.com/jaykz52/mechanic">mechanic.js</a>
and a set of shortcut names is available.</p>
<table><thead><tr><th align="right">iOS Name</th>
<th align="left">Shortcut</th>
</tr></thead><tbody><tr><td align="right">UIAActionSheet</td>
<td align="left">actionsheet</td>
</tr><tr><td align="right">UIAActivityIndicator</td>
<td align="left">activityIndicator</td>
</tr><tr><td align="right">UIAAlert</td>
<td align="left">alert</td>
</tr><tr><td align="right">UIAButton</td>
<td align="left">button</td>
</tr><tr><td align="right">UIACollectionCell</td>
<td align="left">collectionCell</td>
</tr><tr><td align="right">UIACollectionView</td>
<td align="left">collection</td>
</tr><tr><td align="right">UIAEditingMenu</td>
<td align="left">editingMenu</td>
</tr><tr><td align="right">UIAImage</td>
<td align="left">image</td>
</tr><tr><td align="right">UIAKey</td>
<td align="left">key</td>
</tr><tr><td align="right">UIAKeyboard</td>
<td align="left">keyboard</td>
</tr><tr><td align="right">UIALink</td>
<td align="left">link</td>
</tr><tr><td align="right">UIAMapView</td>
<td align="left">mapView</td>
</tr><tr><td align="right">UIAPageIndicator</td>
<td align="left">pageIndicator</td>
</tr><tr><td align="right">UIAPicker</td>
<td align="left">picker</td>
</tr><tr><td align="right">UIAPickerWheel</td>
<td align="left">pickerwheel</td>
</tr><tr><td align="right">UIAPopover</td>
<td align="left">popover</td>
</tr><tr><td align="right">UIAProgressIndicator</td>
<td align="left">progress</td>
</tr><tr><td align="right">UIAScrollView</td>
<td align="left">scrollview</td>
</tr><tr><td align="right">UIASearchBar</td>
<td align="left">searchbar</td>
</tr><tr><td align="right">UIASecureTextField</td>
<td align="left">secure</td>
</tr><tr><td align="right">UIASegmentedControl</td>
<td align="left">segmented</td>
</tr><tr><td align="right">UIASlider</td>
<td align="left">slider</td>
</tr><tr><td align="right">UIAStaticText</td>
<td align="left">text</td>
</tr><tr><td align="right">UIAStatusBar</td>
<td align="left">statusbar</td>
</tr><tr><td align="right">UIASwitch</td>
<td align="left">switch</td>
</tr><tr><td align="right">UIATabBar</td>
<td align="left">tabbar</td>
</tr><tr><td align="right">UIATableView</td>
<td align="left">tableview</td>
</tr><tr><td align="right">UIATableCell</td>
<td align="left">cell, tableCell</td>
</tr><tr><td align="right">UIATableGroup</td>
<td align="left">group</td>
</tr><tr><td align="right">UIATextField</td>
<td align="left">textfield</td>
</tr><tr><td align="right">UIATextView</td>
<td align="left">textview</td>
</tr><tr><td align="right">UIAToolbar</td>
<td align="left">toolbar</td>
</tr><tr><td align="right">UIAWebView</td>
<td align="left">webview</td>
</tr><tr><td align="right">UIAWindow</td>
<td align="left">window</td>
</tr><tr><td align="right">UIANavigationBar</td>
<td align="left">navigationBar</td>
</tr></tbody></table><p>Under each element name is a list of properties.</p>
<pre>UIAStaticText
name, label, value: UICatalog</pre>
<p>In this case we see that the name, label, and value are all equal to UICatalog.</p>
<pre>> name('UICatalog')
#<:webdriver::element:0x..f8575cfe515fb47ea id="0"></:webdriver::element:0x..f8575cfe515fb47ea></pre>
<p>The name command in the appium ruby gem will search for a partial match on
either the name or the label. Once we've found the element,
then we can access the value attribute.</p>
<p>To find by value, we'd use:</p>
<pre>> s_text 'UICatalog'
#<:webdriver::element:0x5e4e2159acc099a id="3"></:webdriver::element:0x5e4e2159acc099a></pre>
<p>This finds a static text that contains UICatalog. If we're looking for an
exact match, then s_text_exact works.</p>
<pre>> s_text_exact 'UICatalog'
#<:webdriver::element:0x5e4e2159acc099a id="3"></:webdriver::element:0x5e4e2159acc099a></pre>
<p>These helper methods <a href="https://github.com/appium/ruby_lib/tree/master/docs">are documented on GitHub</a>.</p>
<p>To view all possible elements, there's a <code>source</code> command. The <code>page_class</code>
command will give you an overview of what classes exist on the current page.</p>
<pre>> page_class
13x UIAStaticText
12x UIATableCell
4x UIAElement
3x UIAWindow
2x UIAImage
1x UIATableView
1x UIANavigationBar
1x UIAStatusBar</pre>
<p>The page command excels at identifying the elements you're most likely
interested in automating. I encourage you to read through the existing docs
and try the methods on different elements.</p>
<hr /><h4><a class="anchor" id="Ending-the-session" href="#Ending-the-session"><i class="fa fa-link"></i></a>Ending the session</h4>
<p>Once we're done with a testing session, it's very important to cleanly quit.
If a session is not terminated properly then appium will consider the session
to still be in progress. This blocks all future sessions from working.</p>
<p>In the appium ruby console, the best way to quit the session is by using the
<code>x</code> command. The <code>x</code> command first ends the webdriver session,
and then ends the console.</p>
<p>If you desire to end only the webdriver session and remain in the console,
use driver_quit.</p>
<p>It's also important to end sessions when running tests outside the console.
All the selenium bindings offer a quit method. This should be invoked once
the testing session is over.</p>
<hr /><h4><a class="anchor" id="Appium.app-Inspector" href="#Appium.app-Inspector"><i class="fa fa-link"></i></a>Appium.app Inspector</h4>
<p>We've covered finding elements using the page command on the terminal.
Appium also has a GUI tool on OS X called Appium.app.</p>
<p>Appium.app enables visual exploration of the application to identify elements.
In addition, gestures are supported and can be exported to working code.</p>
<p>When using Appium.app for the first time, click the checkbox button. This
will activate appium doctor. If you don't see all green checkmarks,
then something is incorrect with your system configuration. Make the
necessary changes, press the checkbox button again, and then proceed when
everything is passing.</p>
<p><img src="appium_doctor.png" alt="" /></p>
<p>By default Appium.app uses a bundled version of appium. If you're running the
newest appium version from source, then click <code>Appium</code> -> <code>Preferences</code> and
set <code>Use External Appium Package</code>.</p>
<p><img src="appium_external.png" alt="" /></p>
<p>While most interactions can be done completely within the console, Appium.app is
great for identifying the proper values for appium's gesture commands.</p>
<p>Appium.app's inspector works on iOS. The data is based on the same source as
the page command that we used in the last lesson.</p>
<p><img src="inspector_ios.png" alt="" /></p>
<hr /><h4><a class="anchor" id="2-Helpful-Links" href="#2-Helpful-Links"><i class="fa fa-link"></i></a>Helpful Links</h4>
<table><thead><tr><th align="right">Link</th>
<th align="left">Summary</th>
</tr></thead><tbody><tr><td align="right"><a href="https://github.com/appium/appium/tree/master/docs">Appium</a></td>
<td align="left">New versions of Appium.app are available on the appium homepage.</td>
</tr><tr><td align="right"><a href="https://github.com/appium/ruby_lib/tree/master/docs">appium_lib gem</a></td>
<td align="left">Appium's ruby library is on GitHub.</td>
</tr><tr><td align="right"><a href="https://github.com/appium/ruby_console">appium_console gem</a></td>
<td align="left">Appium's Ruby Console is also on GitHub.</td>
</tr><tr><td align="right"><a href="https://code.google.com/p/selenium/wiki/JsonWireProtocol">Selenium JsonWireProtocol</a></td>
<td align="left">The network traffic displayed in the console conforms to the JSON Wire Protocol.</td>
</tr></tbody></table><hr /><h4><a class="anchor" id="2-Summary" href="#2-Summary"><i class="fa fa-link"></i></a>Summary</h4>
<p>We covered using the ruby console to interactively explore apps and write
tests. An open source iOS app was used for testing. In addition to the terminal
workflow, we covered Appium.app which is an excellent visual based tool.</p>
<hr /><h3><a class="anchor" id="Chapter-3---Writing-your-first-test" href="#Chapter-3---Writing-your-first-test"><i class="fa fa-link"></i></a>Chapter 3 - Writing your first test</h3>
<h4><a class="anchor" id="3-Introduction" href="#3-Introduction"><i class="fa fa-link"></i></a>Introduction</h4>
<p>Now that we've looked at the commands in the console,
it's time to write our first test. This involves using a test framework,
following the page object pattern, and running the test automatically.</p>
<hr /><h4><a class="anchor" id="Automating-a-simple-action" href="#Automating-a-simple-action"><i class="fa fa-link"></i></a>Automating a simple action</h4>
<p>The commands in the test are exactly the same as those used in the console.
Code can be copied and pasted to and from the console to form production tests.</p>
<p>The basic structure of the UICatalog test app is that clicking on the text
brings you to a dedicated page about that text. Buttons triggers the Buttons
page, Controls triggers Controls, and so on.</p>
<p>We're going to verify each element brings us to the correct page.</p>
<div class="highlight"><pre><span class="n">s_text</span><span class="p">(</span><span class="s1">'Buttons, Various uses of UIButton'</span><span class="p">)</span><span class="o">.</span><span class="n">click</span>
<span class="n">s_text_exact</span> <span class="s1">'Buttons'</span>
</pre></div>
<p>For the first entry, we click on Buttons and then assert that the buttons
page is displayed. The code is valid however there's an issue related to
timing.</p>
<p>In the console, the implicit wait is turned to zero for immediate feedback.
That means when an element isn't found the test ends immediately because an
element not found exception is raised.</p>
<p>To overcome these timing problems, the wait helper method is useful.</p>
<div class="highlight"><pre><span class="n">wait</span> <span class="p">{</span> <span class="n">s_text</span><span class="p">(</span><span class="s1">'Buttons, Various uses of UIButton'</span><span class="p">)</span><span class="o">.</span><span class="n">click</span> <span class="p">}</span>
<span class="n">wait</span> <span class="p">{</span> <span class="n">s_text_exact</span> <span class="s1">'Buttons'</span> <span class="p">}</span>
</pre></div>
<p>Now the code will wait up to 30 seconds for the command to succeed. If it
succeeds then the next line is executed immediately. If the
command is still failing after 30 seconds, an error is raised. If this error
is not rescued then the test will end in failure.</p>
<p>Another problem with the test code is that we're depending on the exact text
value. When the app changes, our tests will break.</p>
<div class="highlight"><pre><span class="n">cell_1</span> <span class="o">=</span> <span class="n">wait</span> <span class="p">{</span> <span class="n">s_text</span> <span class="mi">2</span> <span class="p">}</span>
<span class="n">page_title</span> <span class="o">=</span> <span class="n">cell_1</span><span class="o">.</span><span class="n">name</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="s1">','</span><span class="p">)</span><span class="o">.</span><span class="n">first</span>
<span class="n">wait</span> <span class="p">{</span> <span class="n">cell_1</span><span class="o">.</span><span class="n">click</span> <span class="p">}</span>
<span class="n">wait</span> <span class="p">{</span> <span class="n">s_text_exact</span> <span class="n">page_title</span> <span class="p">}</span>
</pre></div>
<p>In this code, we're finding the first text by index. Index 2 contains the
first cell. Index 1 is the table header. After that we're extracting the name
and dynamically finding the title <code>Buttons</code>. The test will continue working
even after small changes to the string values.</p>
<p>To conclude this lesson, we'll look at the code to automate all 12 cells.</p>
<div class="highlight"><pre><span class="n">cell_names</span> <span class="o">=</span> <span class="n">tags</span><span class="p">(</span><span class="s1">'cell'</span><span class="p">)</span><span class="o">.</span><span class="n">map</span> <span class="p">{</span> <span class="o">|</span><span class="n">cell</span><span class="o">|</span> <span class="n">cell</span><span class="o">.</span><span class="n">name</span> <span class="p">}</span>
<span class="n">cell_names</span><span class="o">.</span><span class="n">each</span> <span class="k">do</span> <span class="o">|</span><span class="nb">name</span><span class="o">|</span>
<span class="n">wait</span> <span class="p">{</span> <span class="n">s_text_exact</span><span class="p">(</span><span class="nb">name</span><span class="p">)</span><span class="o">.</span><span class="n">click</span> <span class="p">}</span>
<span class="n">wait</span> <span class="p">{</span> <span class="n">s_text_exact</span> <span class="nb">name</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="s1">','</span><span class="p">)</span><span class="o">.</span><span class="n">first</span> <span class="p">}</span>
<span class="n">wait</span> <span class="p">{</span> <span class="n">back</span> <span class="p">}</span>
<span class="k">end</span>
</pre></div>
<p>Notice that we didn't have to scroll to the elements that were off screen. By
default, we're able to access off screen elements and they're scrolled
into view.</p>
<hr /><h4><a class="anchor" id="Page-Object-Pattern" href="#Page-Object-Pattern"><i class="fa fa-link"></i></a>Page Object Pattern</h4>
<p>Now that we have a test fully written, it's time to apply the
<a href="https://code.google.com/p/selenium/wiki/PageObjects">page object pattern</a>.</p>
<p>This pattern is language independent and applies to any Selenium testing,
not just appium. The idea is to create an abstraction at the page level. Each
page knows how to perform the relevant actions.</p>
<p>Clone the git repository and copy the <a href="https://github.com/appium/tutorial/tree/master/modules/source/ruby_ios">ruby_ios</a>
directory to your computer.</p>
<blockquote>
<p>git clone <a href="https://github.com/appium/tutorial.git">https://github.com/appium/tutorial.git</a></p>
</blockquote>
<p>The pages are contained within the page folder, and the test inside specs.
The test code is:</p>
<div class="highlight"><pre><span class="n">home</span><span class="o">.</span><span class="n">buttons_click</span>
<span class="n">back_click</span>
<span class="n">home</span><span class="o">.</span><span class="n">controls_click</span>
<span class="n">back_click</span>
</pre></div>
<p>This says from the home page, find the buttons element and click it. Then go
back, find the controls element and click it, and finally go back once more.
The page objects are implemented using modules.</p>
<div class="highlight"><pre><span class="k">module</span> <span class="nn">UICatalog</span>
<span class="k">module</span> <span class="nn">Home</span>
<span class="k">class</span> <span class="o"><<</span> <span class="nb">self</span>
</pre></div>
<p>There's a top level <code>UICatalog</code> module followed by a module for the
individual page. After that the <code>class << self</code> line makes the following
methods static.</p>
<div class="highlight"><pre><span class="k">def</span> <span class="nf">button_uses_click</span>
<span class="nb">self</span><span class="o">.</span><span class="n">assert</span>
<span class="n">wait</span> <span class="p">{</span> <span class="n">s_text</span><span class="p">(</span><span class="mi">2</span><span class="p">)</span><span class="o">.</span><span class="n">click</span> <span class="p">}</span>
<span class="n">button_uses</span><span class="o">.</span><span class="n">assert</span>
<span class="k">end</span>
</pre></div>
<p>This is the first element method. First the method asserts that the app
is on the home page. Self in this case refers to the Home module. <code>self
.assert</code> is the same as <code>home.assert</code>. After that the second static text
is clicked. Finally, the code asserts the app is on the button uses page.
The button_uses page object defines the assert methods:</p>
<div class="highlight"><pre><span class="k">def</span> <span class="nf">assert_exists</span>
<span class="n">s_text_exact</span> <span class="n">resolve_id</span> <span class="s1">'ButtonsTitle'</span>
<span class="k">end</span>
<span class="k">def</span> <span class="nf">assert</span>
<span class="n">wait</span> <span class="p">{</span> <span class="nb">self</span><span class="o">.</span><span class="n">assert_exists</span> <span class="p">}</span>
<span class="k">end</span>
</pre></div>
<p>In this part of the app there's an ID. We're resolving that id to the text
value and then performing an exact static text search. This is the same as
<code>s_text_exact 'Buttons'</code> however because we're using ids,
the text can change and the ids will remain constant.</p>
<p><code>appium.txt</code> enables these page methods to be used from within the appium
ruby console. In the next lesson, we'll review running the entire test using
Rake.</p>
<hr /><h4><a class="anchor" id="Running-the-test-with-Rake" href="#Running-the-test-with-Rake"><i class="fa fa-link"></i></a>Running the test with Rake</h4>
<p>Now that we have the code written and it's following best practices,
let's investigate a new way to run it.</p>
<p>One way to run the test is to copy and paste the lines into the console.
This can be done line by line when debugging. You could also copy and paste
the entire test.</p>
<p>When running a full test, it's often preferable to use the <code>rake</code> command.</p>
<blockquote>
<p>rake ios[test]</p>
</blockquote>
<p>The Rakefile for this project is setup to define an ios task. That task
accepts the test name as an argument.</p>
<p>Running a single test this way is great for debugging as the individual lines
of the source code are printed to the console. It also reproduces how the
test will be run in continuous integration. If there are timing issues then
they will be apparent when everything is run together.</p>
<p>The rake output for our simple 4 line test is below:</p>
<pre>$ rake ios[test]
Rake appium.txt path is: /tutorial/modules/source/ruby_ios/appium.txt
bundle exec ruby ./lib/run.rb ios "test"
appium.txt path: /tutorial/modules/source/ruby_ios/appium.txt
Exists? true
Loading /tutorial/modules/source/ruby_ios/appium.txt
{
"DEVICE" => "ios",
"APP_PATH" => "./UICatalog.app",
"require" => [
[0] "./lib/ios/pages",
[1] "./lib/common.rb"
]
}</pre>
<p>We've loaded appium.txt and then used bundle exec to run a ruby command with
the gems defined in the Gemfile. The appium.txt defines what device to use,
the app to install, and the files to load.</p>
<pre>Start driver
Debug is: true
{
:debug => true,
:wait => 30
}
Device is: iPhone Simulator
post /session
{
:desiredCapabilities => {
:platform => "OS X 10.9",
:version => "7",
:device => "iPhone Simulator",
:name => "Ruby Console iOS Appium",
:"device-orientation" => "portrait",
:app => "/tutorial/modules/source/ruby_ios/UICatalog.app"
}
}</pre>
<p>The driver is started in debug mode and we're able to see the session traffic.
The session capabilities are sent to the appium server.</p>
<pre>post /execute
{
:script => "mobile: setCommandTimeout",
:args => [
[0] {
:timeout => 9999
}
]
}</pre>
The command timeout is set to a high value. That means if there's a long
pause between sending commands to appium, the test will not automatically fail.
<pre>post /timeouts/implicit_wait
{
:ms => 30000
}</pre>
<p>By default, we're waiting 30 seconds for an element to show up. Even though
implicit wait is used, we're also taking advantage of a client side wait. On
iOS some errors will not be retried unless you're catching them client side.</p>
<pre>Loading one test: /tutorial/modules/source/ruby_ios/lib/ios/specs/./test.rb</pre>
<p>We've found one test, <code>test.rb</code>, and execution begins.</p>
<pre>test | 1 |ios/specs/test.rb:5</pre>
<p>This is the 1st test in test.rb and it's named <code>test</code>.</p>
<pre> home.button_uses_click</pre>
<p>The actual line of code from test.rb that's running is displayed in the
console.</p>
<pre>post /element
{
:using => "xpath",
:value => "text[@text='UICatalog']"
}
post /element
{
:using => "xpath",
:value => "//text[2]"
}
post /element/1/click
post /execute
{
:script => "mobile: getStrings"
}
post /element
{
:using => "xpath",
:value => "text[@text='Buttons']"
}</pre>
<p>That one call to <code>home.button_uses_click</code> generated 3 network requests. The
first is for home.assert, the second and third are for clicking on the
button, and finally we're asserting we made it to the buttons page.</p>
<pre> back_click
post /execute
{
:script => "au.mainApp().getAllWithPredicate(\"name contains[c] 'back' || label contains[c] 'back'\");"
}
get /element/3/displayed
post /element/3/click</pre>
<p>The back_click logic identifies the first back button that's visible. iOS
will return invisible elements that can't be clicked on so it's important to
filter on visibility.</p>
<pre> home.control_uses_click
post /element
{
:using => "xpath",
:value => "text[@text='UICatalog']"
}
post /element
{
:using => "xpath",
:value => "//text[3]"
}
post /element/7/click
post /element
{
:using => "xpath",
:value => "text[@text='Controls']"
}</pre>
<p>This is the second button, we've navigated to the Controls page.</p>
<pre> back_click
post /execute
{
:script => "au.mainApp().getAllWithPredicate(\"name contains[c] 'back' || label contains[c] 'back'\");"
}
get /element/9/displayed
post /element/9/click</pre>
<p>And now we're back to the home page.</p>
<pre>Finished in 5 secs
1 runs, 0 assertions, 0 failures, 0 errors, 0 skips
delete </pre>
<p>At the end of the test, statistics are displayed. This is a successful run
because there are no failures, errors, or skips. The final <code>delete</code> is the
result of calling driver.quit which tells appium to end the session.</p>
<hr /><h4><a class="anchor" id="3-Helpful-Links" href="#3-Helpful-Links"><i class="fa fa-link"></i></a>Helpful Links</h4>
<table><thead><tr><th align="right">Link</th>
<th align="left">Summary</th>
</tr></thead><tbody><tr><td align="right"><a href="https://github.com/appium/ruby_lib/tree/master/docs">appium_lib gem docs</a></td>
<td align="left">The Ruby lib has extensive documentation. A number of Ruby helper methods are available.</td>
</tr><tr><td align="right"><a href="https://code.google.com/p/selenium/wiki/RubyBindings">Selenium Ruby bindings</a></td>
<td align="left">The full API of the selenium ruby bindings is available. Under the hood the ruby bindings for appium use the selenium ruby bindings.</td>
</tr><tr><td align="right"><a href="https://code.google.com/p/selenium/wiki/PageObjects">Selenium page objects</a></td>
<td align="left">The page object pattern is explained in great detail.</td>
</tr><tr><td align="right"><a href="http://rake.rubyforge.org/">Rake</a></td>
<td align="left">The Rake homepage contains an overview of the tool.</td>
</tr></tbody></table><hr /><h4><a class="anchor" id="3-Summary" href="#3-Summary"><i class="fa fa-link"></i></a>Summary</h4>
<p>We successfully wrote a complete test and applied the page object pattern to it.
After that, the rake gem was used to run the test.</p>
<p>In the next chapter, we're going to look at even more ways to run tests.</p>
<hr /><h3><a class="anchor" id="Chapter-4---Running-tests" href="#Chapter-4---Running-tests"><i class="fa fa-link"></i></a>Chapter 4 - Running tests</h3>
<h4><a class="anchor" id="4-Introduction" href="#4-Introduction"><i class="fa fa-link"></i></a>Introduction</h4>
<p>So far we've looked at two different ways to run tests, the console and rake.</p>
<p>In this chapter we'll cover running using the flaky gem, locally, on Jenkins,
and on Sauce.</p>
<hr /><h4><a class="anchor" id="Flaky-Gem" href="#Flaky-Gem"><i class="fa fa-link"></i></a>Flaky Gem</h4>
<p>The flaky gem is a complete test runner specialized for appium Ruby tests.</p>
<p>It runs only on OS X and supports iOS and Android testing. After writing a
number of UI tests, you'll quickly notice that flakiness is a serious problem
. One way we're able to overcome this issue is by running failed tests
multiple times.</p>
<p>The flaky gem has a number of run modes:</p>
<ul><li>all tests - run everything</li>
<li>from file - run a set of tests as specified in a text file</li>
<li>one test - run only one test</li>
<li>two pass - run tests once, then run only the failures x amount of times.</li>
</ul><p>The best way to understand these modes is to see them in action.</p>
<p>In addition to running the tests and recording pass/fail,
there are a number of interesting features.</p>
<p>The test run is automatically video recorded, in addition to debug and crash
logs. The crash logs are also recorded.
After a run, all the specific information is stored in /tmp/flaky</p>
<p>This tool was designed for a highly specific use case (testing virtual
devices) so even if it doesn't work out of the box for you,
some of the open source code may still be valuable.</p>
<p>flaky uses the same test syntax as rake.</p>
<p>To run the <code>test.rb</code> from the last lesson 3 times, use <code>flake 3 ios[test]</code></p>
<pre>$ flake 3 ios[test]
Recording Video: true
Running test 3x
ios/specs/test ✓ ✓ ✓
1 Tests
Success (1):
ios/specs/test, runs: 3, pass: 3, fail: 0
Finished in 1 min 24 secs
Mar 13 10:24 pm - 10:26 pm
3/13/2014 1 0 1 100
--</pre>
<p>This output shows that we're able to run the test 3 times without issue.
Additional information is saved in <code>/tmp/flaky</code>. It's not uncommon to have a
test that fails 1 in 10 times. Rerunning failed tests is a way to see how
stable they are.</p>
<hr /><h4><a class="anchor" id="Running-Locally" href="#Running-Locally"><i class="fa fa-link"></i></a>Running Locally</h4>
<p>For completeness, there are three primary ways of running tests locally.</p>