appium_lib 0.24.1 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +17 -8
- data/android_tests/Gemfile +1 -0
- data/android_tests/LICENSE-2.0.txt +202 -0
- data/android_tests/Rakefile +61 -0
- data/android_tests/api.apk +0 -0
- data/android_tests/appium.txt +3 -0
- data/android_tests/flaky.txt +1 -0
- data/android_tests/lib/android/specs/android/dynamic.rb +5 -0
- data/android_tests/lib/android/specs/android/element/alert.rb +41 -0
- data/android_tests/lib/android/specs/android/element/button.rb +55 -0
- data/android_tests/lib/android/specs/android/element/generic.rb +48 -0
- data/android_tests/lib/android/specs/android/element/text.rb +39 -0
- data/android_tests/lib/android/specs/android/element/textfield.rb +60 -0
- data/android_tests/lib/android/specs/android/helper.rb +80 -0
- data/android_tests/lib/android/specs/android/patch.rb +14 -0
- data/android_tests/lib/android/specs/common/device.rb +117 -0
- data/android_tests/lib/android/specs/common/element/window.rb +9 -0
- data/android_tests/lib/android/specs/common/helper.rb +112 -0
- data/android_tests/lib/android/specs/common/patch.rb +69 -0
- data/android_tests/lib/android/specs/common/version.rb +9 -0
- data/android_tests/lib/android/specs/driver.rb +174 -0
- data/android_tests/lib/format.rb +49 -0
- data/android_tests/lib/run.rb +72 -0
- data/android_tests/readme.md +27 -0
- data/appium_lib.gemspec +8 -5
- data/docs/android_docs.md +1052 -716
- data/docs/ios_docs.md +657 -834
- data/docs_gen/make_docs.rb +1 -3
- data/ios_tests/Gemfile +1 -0
- data/ios_tests/LICENSE-2.0.txt +202 -0
- data/ios_tests/Rakefile +47 -0
- data/ios_tests/UICatalog.app.zip +0 -0
- data/ios_tests/UICatalog.app/12-6AM.png +0 -0
- data/ios_tests/UICatalog.app/12-6PM.png +0 -0
- data/ios_tests/UICatalog.app/6-12AM.png +0 -0
- data/ios_tests/UICatalog.app/6-12PM.png +0 -0
- data/ios_tests/UICatalog.app/Default-568h@2x.png +0 -0
- data/ios_tests/UICatalog.app/Default@2x.png +0 -0
- data/ios_tests/UICatalog.app/Info.plist +0 -0
- data/ios_tests/UICatalog.app/PkgInfo +1 -0
- data/ios_tests/UICatalog.app/UIButton_custom.png +0 -0
- data/ios_tests/UICatalog.app/UICatalog +0 -0
- data/ios_tests/UICatalog.app/blueButton.png +0 -0
- data/ios_tests/UICatalog.app/bookmarkImage.png +0 -0
- data/ios_tests/UICatalog.app/bookmarkImageHighlighted.png +0 -0
- data/ios_tests/UICatalog.app/divider.png +0 -0
- data/ios_tests/UICatalog.app/en.lproj/AlertsViewController.nib +0 -0
- data/ios_tests/UICatalog.app/en.lproj/ButtonsViewController.nib +0 -0
- data/ios_tests/UICatalog.app/en.lproj/ControlsViewController.nib +0 -0
- data/ios_tests/UICatalog.app/en.lproj/ImagesViewController.nib +0 -0
- data/ios_tests/UICatalog.app/en.lproj/Localizable.strings +0 -0
- data/ios_tests/UICatalog.app/en.lproj/MainWindow.nib +0 -0
- data/ios_tests/UICatalog.app/en.lproj/PickerViewController.nib +0 -0
- data/ios_tests/UICatalog.app/en.lproj/SearchBarController.nib +0 -0
- data/ios_tests/UICatalog.app/en.lproj/SegmentViewController.nib +0 -0
- data/ios_tests/UICatalog.app/en.lproj/TextFieldController.nib +0 -0
- data/ios_tests/UICatalog.app/en.lproj/TextViewController.nib +0 -0
- data/ios_tests/UICatalog.app/en.lproj/ToolbarViewController.nib +0 -0
- data/ios_tests/UICatalog.app/en.lproj/TransitionViewController.nib +0 -0
- data/ios_tests/UICatalog.app/en.lproj/WebViewController.nib +0 -0
- data/ios_tests/UICatalog.app/orangeslide.png +0 -0
- data/ios_tests/UICatalog.app/scene1.jpg +0 -0
- data/ios_tests/UICatalog.app/scene2.jpg +0 -0
- data/ios_tests/UICatalog.app/scene3.jpg +0 -0
- data/ios_tests/UICatalog.app/scene4.jpg +0 -0
- data/ios_tests/UICatalog.app/scene5.jpg +0 -0
- data/ios_tests/UICatalog.app/searchBarBackground.png +0 -0
- data/ios_tests/UICatalog.app/segment_check.png +0 -0
- data/ios_tests/UICatalog.app/segment_search.png +0 -0
- data/ios_tests/UICatalog.app/segment_tools.png +0 -0
- data/ios_tests/UICatalog.app/segmentedBackground.png +0 -0
- data/ios_tests/UICatalog.app/slider_ball.png +0 -0
- data/ios_tests/UICatalog.app/toolbarBackground.png +0 -0
- data/ios_tests/UICatalog.app/whiteButton.png +0 -0
- data/ios_tests/UICatalog.app/yellowslide.png +0 -0
- data/ios_tests/appium.txt +3 -0
- data/ios_tests/flaky.txt +1 -0
- data/ios_tests/lib/format.rb +25 -0
- data/ios_tests/lib/ios/specs/common/element/window.rb +15 -0
- data/ios_tests/lib/ios/specs/common/helper.rb +204 -0
- data/ios_tests/lib/ios/specs/common/patch.rb +50 -0
- data/ios_tests/lib/ios/specs/common/version.rb +17 -0
- data/ios_tests/lib/ios/specs/device/device.rb +82 -0
- data/ios_tests/lib/ios/specs/device/multi_touch.rb +12 -0
- data/ios_tests/lib/ios/specs/device/touch_actions.rb +15 -0
- data/ios_tests/lib/ios/specs/driver.rb +203 -0
- data/ios_tests/lib/ios/specs/ios/element/alert.rb +48 -0
- data/ios_tests/lib/ios/specs/ios/element/button.rb +58 -0
- data/ios_tests/lib/ios/specs/ios/element/generic.rb +35 -0
- data/ios_tests/lib/ios/specs/ios/element/text.rb +54 -0
- data/ios_tests/lib/ios/specs/ios/element/textfield.rb +123 -0
- data/ios_tests/lib/ios/specs/ios/helper.rb +27 -0
- data/ios_tests/lib/ios/specs/ios/patch.rb +30 -0
- data/ios_tests/lib/run.rb +106 -0
- data/ios_tests/readme.md +30 -0
- data/ios_tests/upload/sauce_storage.rb +64 -0
- data/ios_tests/upload/upload.rb +6 -0
- data/lib/appium_lib.rb +4 -14
- data/lib/appium_lib/android/dynamic.rb +30 -32
- data/lib/appium_lib/android/element/alert.rb +34 -33
- data/lib/appium_lib/android/element/button.rb +91 -0
- data/lib/appium_lib/android/element/generic.rb +51 -146
- data/lib/appium_lib/android/element/text.rb +54 -0
- data/lib/appium_lib/android/element/textfield.rb +46 -41
- data/lib/appium_lib/android/helper.rb +248 -417
- data/lib/appium_lib/android/mobile_methods.rb +17 -0
- data/lib/appium_lib/android/patch.rb +9 -8
- data/lib/appium_lib/awesome_print/ostruct.rb +33 -0
- data/lib/appium_lib/common/element/window.rb +9 -8
- data/lib/appium_lib/common/helper.rb +182 -243
- data/lib/appium_lib/common/patch.rb +65 -79
- data/lib/appium_lib/common/version.rb +2 -3
- data/lib/appium_lib/device/device.rb +339 -0
- data/lib/appium_lib/device/multi_touch.rb +94 -0
- data/lib/appium_lib/device/touch_actions.rb +142 -0
- data/lib/appium_lib/driver.rb +217 -306
- data/lib/appium_lib/ios/element/alert.rb +16 -92
- data/lib/appium_lib/ios/element/button.rb +55 -0
- data/lib/appium_lib/ios/element/generic.rb +27 -160
- data/lib/appium_lib/ios/element/text.rb +54 -0
- data/lib/appium_lib/ios/element/textfield.rb +78 -65
- data/lib/appium_lib/ios/helper.rb +300 -190
- data/lib/appium_lib/ios/mobile_methods.rb +17 -0
- data/lib/appium_lib/ios/patch.rb +55 -41
- data/lib/appium_lib/logger.rb +13 -0
- data/lib/appium_lib/rails/duplicable.rb +116 -0
- data/readme.md +6 -1
- data/release_notes.md +118 -0
- metadata +170 -12
- data/lib/appium_lib/common/element/button.rb +0 -83
- data/lib/appium_lib/common/element/text.rb +0 -61
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b7d2dfd027a0f998e7f31a5ba2247568e580792
|
4
|
+
data.tar.gz: 324e6e3c36b835cee8a331e452de782b31041160
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d30760f200fcc1e1990c29d175c46c4a6424485302dd85bfc29e358ce87105863856cb6df467ee02fa67115523cca78267c0753a5d7289b252ff7075a654e6a
|
7
|
+
data.tar.gz: 46d85eb8e78fab845e53a47caa09edee410b64a24580c6e5d6373b4a4a239e614e242183f78e9d7bead0403f95345ca4c13b348d268041530f6e62ce69d47710
|
data/Rakefile
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# ruby_lib Rakefile
|
3
2
|
require 'rubygems'
|
4
3
|
require 'rake'
|
@@ -9,17 +8,17 @@ require 'posix/spawn'
|
|
9
8
|
def repo_name; 'appium_lib' end # ruby_lib published as appium_lib
|
10
9
|
def gh_name; 'ruby_lib' end # the name as used on github.com
|
11
10
|
def version_file; "lib/#{repo_name}/common/version.rb" end
|
12
|
-
def version_rgx;
|
11
|
+
def version_rgx; /\s*VERSION\s*=\s*'([^']+)'/m end
|
13
12
|
|
14
13
|
def version
|
15
14
|
@version = @version || File.read(version_file).match(version_rgx)[1]
|
16
15
|
end
|
17
16
|
|
18
|
-
def bump
|
17
|
+
def bump value
|
19
18
|
data = File.read version_file
|
20
19
|
|
21
20
|
v_line = data.match version_rgx
|
22
|
-
d_line = data.match
|
21
|
+
d_line = data.match /\s*DATE\s*=\s*'([^']+)'/m
|
23
22
|
|
24
23
|
old_v = v_line[0]
|
25
24
|
old_d = d_line[0]
|
@@ -28,9 +27,13 @@ def bump major=false
|
|
28
27
|
new_num = old_num.split('.')
|
29
28
|
new_num[-1] = new_num[-1].to_i + 1
|
30
29
|
|
31
|
-
if
|
30
|
+
if value == :y
|
32
31
|
new_num[-1] = 0 # x.y.Z -> x.y.0
|
33
32
|
new_num[-2] = new_num[-2].to_i + 1 # x.Y -> x.Y+1
|
33
|
+
elsif value == :x
|
34
|
+
new_num[-1] = 0 # x.y.Z -> x.y.0
|
35
|
+
new_num[-2] = 0 # x.Y.z -> x.0.z
|
36
|
+
new_num[-3]= new_num[-3].to_i + 1
|
34
37
|
end
|
35
38
|
|
36
39
|
new_num = new_num.join '.'
|
@@ -49,16 +52,22 @@ def bump major=false
|
|
49
52
|
File.write version_file, data
|
50
53
|
end
|
51
54
|
|
52
|
-
desc 'Bump the version number and update the date.'
|
55
|
+
desc 'Bump the z version number and update the date.'
|
53
56
|
task :bump do
|
54
|
-
bump
|
57
|
+
bump :z
|
55
58
|
end
|
56
59
|
|
57
60
|
desc 'Bump the y version number, set z to zero, update the date.'
|
58
61
|
task :bumpy do
|
59
|
-
bump
|
62
|
+
bump :y
|
63
|
+
end
|
64
|
+
|
65
|
+
desc 'Bump the x version number, set y & z to zero, update the date.'
|
66
|
+
task :bumpx do
|
67
|
+
bump :x
|
60
68
|
end
|
61
69
|
|
70
|
+
|
62
71
|
desc 'Install gems required for release task'
|
63
72
|
task :dev do
|
64
73
|
sh 'gem install --no-rdoc --no-ri yard'
|
@@ -0,0 +1 @@
|
|
1
|
+
eval File.read('../Gemfile')
|
@@ -0,0 +1,202 @@
|
|
1
|
+
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
5
|
+
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
+
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
177
|
+
END OF TERMS AND CONDITIONS
|
178
|
+
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
180
|
+
|
181
|
+
To apply the Apache License to your work, attach the following
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
+
replaced with your own identifying information. (Don't include
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
185
|
+
comment syntax for the file format. We also recommend that a
|
186
|
+
file or class name and description of purpose be included on the
|
187
|
+
same "printed page" as the copyright notice for easier
|
188
|
+
identification within third-party archives.
|
189
|
+
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
191
|
+
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
+
you may not use this file except in compliance with the License.
|
194
|
+
You may obtain a copy of the License at
|
195
|
+
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
+
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
+
See the License for the specific language governing permissions and
|
202
|
+
limitations under the License.
|
@@ -0,0 +1,61 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
task :default => :android
|
5
|
+
|
6
|
+
# Run sh and ignore exception
|
7
|
+
def run_sh cmd
|
8
|
+
begin; sh cmd; rescue; end
|
9
|
+
end
|
10
|
+
|
11
|
+
# Run cmd. On failure run install and try again.
|
12
|
+
def bash cmd
|
13
|
+
sh cmd do |successful, result|
|
14
|
+
# exitstatus 7 means bundle install failed
|
15
|
+
# exitstatus 1 means the test failed
|
16
|
+
if !successful && result.exitstatus === 7
|
17
|
+
Rake::Task['install'].execute
|
18
|
+
run_sh cmd
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def wait_for_valid_device
|
24
|
+
while `adb shell echo "ping"`.strip != 'ping'
|
25
|
+
`adb kill-server`
|
26
|
+
`adb devices`
|
27
|
+
sleep 5
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
# rake android['single_text_name']
|
32
|
+
# rake android
|
33
|
+
def run_android test_file=nil
|
34
|
+
wait_for_valid_device
|
35
|
+
path = File.expand_path('appium.txt', Rake.application.original_dir)
|
36
|
+
ENV['APPIUM_TXT'] = path
|
37
|
+
puts "Rake appium.txt path is: #{path}"
|
38
|
+
cmd = 'bundle exec ruby ./lib/run.rb android'
|
39
|
+
cmd += %Q( "#{test_file}") if test_file
|
40
|
+
bash cmd
|
41
|
+
end
|
42
|
+
|
43
|
+
# Run a single test with:
|
44
|
+
# rake android['android/element/generic']
|
45
|
+
#
|
46
|
+
# Run all tests with:
|
47
|
+
# rake android
|
48
|
+
desc 'Run the Android tests'
|
49
|
+
task :android, :args, :test_file do |args, test_file|
|
50
|
+
run_android test_file[:args]
|
51
|
+
end
|
52
|
+
|
53
|
+
desc 'Run the Android tests without uninstalling'
|
54
|
+
task :droid, :args, :test_file do |args, test_file|
|
55
|
+
run_android test_file[:args]
|
56
|
+
end
|
57
|
+
|
58
|
+
desc 'Run bundle install'
|
59
|
+
task :install do
|
60
|
+
sh 'bundle install'
|
61
|
+
end
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
android = "lib/android/specs/"
|
@@ -0,0 +1,41 @@
|
|
1
|
+
describe 'android/element/alert.rb' do
|
2
|
+
def open_alert
|
3
|
+
# trigger the alert
|
4
|
+
wait { button('OK Cancel dialog with a long message').click }
|
5
|
+
end
|
6
|
+
|
7
|
+
t 'alert_click' do
|
8
|
+
# nav to alert activity
|
9
|
+
wait { find('app').click }
|
10
|
+
wait { find('alert').click }
|
11
|
+
|
12
|
+
# test
|
13
|
+
wait { open_alert }
|
14
|
+
wait { alert_click('Something') }
|
15
|
+
end
|
16
|
+
|
17
|
+
t 'alert_accept' do
|
18
|
+
wait { open_alert }
|
19
|
+
wait { alert_accept }
|
20
|
+
end
|
21
|
+
|
22
|
+
t 'alert_accept_text' do
|
23
|
+
wait { open_alert }
|
24
|
+
wait { alert_accept_text.must_equal 'OK' }
|
25
|
+
wait { alert_accept }
|
26
|
+
end
|
27
|
+
|
28
|
+
t 'alert_dismiss' do
|
29
|
+
wait { open_alert }
|
30
|
+
wait { alert_dismiss }
|
31
|
+
end
|
32
|
+
|
33
|
+
t 'alert_dismiss_text' do
|
34
|
+
wait { open_alert }
|
35
|
+
wait { alert_dismiss_text.must_equal 'Cancel' }
|
36
|
+
wait { alert_dismiss }
|
37
|
+
|
38
|
+
# nav to start activity
|
39
|
+
2.times { back }
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
# rake android['android/element/button']
|
2
|
+
describe 'android/element/button' do
|
3
|
+
def before_first
|
4
|
+
# nav to buttons activity
|
5
|
+
wait { find('App').click }
|
6
|
+
wait { find('Activity').click }
|
7
|
+
wait { find('Animation').click }
|
8
|
+
end
|
9
|
+
|
10
|
+
def after_last
|
11
|
+
# nav back to home activity
|
12
|
+
3.times { back }
|
13
|
+
end
|
14
|
+
|
15
|
+
def fade_in
|
16
|
+
'Fade in'
|
17
|
+
end
|
18
|
+
|
19
|
+
t { before_first }
|
20
|
+
|
21
|
+
t 'button' do
|
22
|
+
# by index
|
23
|
+
wait { button(1).name.must_equal fade_in }
|
24
|
+
|
25
|
+
# by name contains
|
26
|
+
wait { button('ade').name.must_equal fade_in }
|
27
|
+
end
|
28
|
+
|
29
|
+
t 'buttons' do
|
30
|
+
exp = ['Zoom in', 'Modern zoom in', 'Thumbnail zoom']
|
31
|
+
wait { buttons('zoom').map { |e| e.text }.must_equal exp }
|
32
|
+
end
|
33
|
+
|
34
|
+
t 'first_button' do
|
35
|
+
wait { first_button.name.must_equal fade_in }
|
36
|
+
end
|
37
|
+
|
38
|
+
t 'last_button' do
|
39
|
+
wait { last_button.name.must_equal 'Thumbnail zoom' }
|
40
|
+
end
|
41
|
+
|
42
|
+
t 'button_exact' do
|
43
|
+
wait { button_exact(fade_in).name.must_equal fade_in }
|
44
|
+
end
|
45
|
+
|
46
|
+
t 'buttons_exact' do
|
47
|
+
wait { buttons_exact(fade_in).first.name.must_equal fade_in }
|
48
|
+
end
|
49
|
+
|
50
|
+
t 'e_buttons' do
|
51
|
+
wait { e_buttons.length.must_equal 6 }
|
52
|
+
end
|
53
|
+
|
54
|
+
t { after_last }
|
55
|
+
end
|