appium_lib 0.24.1 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
module Appium
|
|
2
|
+
module Ios
|
|
3
|
+
class << self
|
|
4
|
+
# @!method uiautomation_find
|
|
5
|
+
# find_element/s can be used with a [UIAutomation command](https://developer.apple.com/library/ios/documentation/ToolsLanguages/Reference/UIAWindowClassReference/UIAWindow/UIAWindow.html#//apple_ref/doc/uid/TP40009930).
|
|
6
|
+
#
|
|
7
|
+
# ```ruby
|
|
8
|
+
# find_elements :uiautomation, 'elements()
|
|
9
|
+
# ```
|
|
10
|
+
def extended(mod)
|
|
11
|
+
Selenium::WebDriver::SearchContext.class_eval do
|
|
12
|
+
Selenium::WebDriver::SearchContext::FINDERS[:uiautomation] = '-ios uiautomation'
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end # class << self
|
|
16
|
+
end # module Ios
|
|
17
|
+
end # module Appium
|
data/lib/appium_lib/ios/patch.rb
CHANGED
|
@@ -1,50 +1,64 @@
|
|
|
1
|
-
|
|
2
|
-
module
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
module Appium
|
|
2
|
+
module Ios
|
|
3
|
+
# @private
|
|
4
|
+
# class_eval inside a method because class Selenium::WebDriver::Element
|
|
5
|
+
# will trigger as soon as the file is required. in contrast a method
|
|
6
|
+
# will trigger only when invoked.
|
|
7
|
+
def patch_webdriver_element
|
|
8
|
+
Selenium::WebDriver::Element.class_eval do
|
|
9
|
+
# Enable access to iOS accessibility label
|
|
10
|
+
# accessibility identifier is supported as 'name'
|
|
11
|
+
def label
|
|
12
|
+
self.attribute('label')
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
# Cross platform way of entering text into a textfield
|
|
16
|
+
def type text
|
|
17
|
+
# enter text then tap window to hide the keyboard.
|
|
18
18
|
=begin
|
|
19
19
|
Find the top left corner of the keyboard and move up 10 pixels (origin.y - 10)
|
|
20
20
|
now swipe down until the end of the window - 10 pixels.
|
|
21
21
|
-10 to ensure we're not going outside the window bounds.
|
|
22
22
|
|
|
23
23
|
Swiping inside the keyboard will not dismiss it.
|
|
24
|
+
|
|
25
|
+
var startY = au.mainApp().keyboard().rect().origin.y - 10;
|
|
26
|
+
var endY = au.mainWindow().rect().size.height - 10;
|
|
27
|
+
au.flickApp(0, startY, 0, endY);
|
|
28
|
+
|
|
29
|
+
The above logic has been accepted as part of appium's au.hideKeyboard
|
|
30
|
+
https://github.com/appium/appium-uiauto/blob/dbeb4eedbdea2104751a0d547ac9b2894e0dc567/uiauto/appium/app.js#L902
|
|
31
|
+
|
|
32
|
+
If the 'Done' key exists then that should be pressed to dismiss the keyboard
|
|
33
|
+
because swiping to dismiss works only if such key doesn't exist.
|
|
24
34
|
=end
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
35
|
+
# type
|
|
36
|
+
$driver.execute_script %(au.getElement('#{self.ref}').setValue('#{text}');)
|
|
37
|
+
|
|
38
|
+
$driver.ignore {
|
|
39
|
+
# wait 5 seconds for a wild keyboard to appear. if the textfield is disabled
|
|
40
|
+
# then setValue will work, however the keyboard will never display
|
|
41
|
+
# because users are normally not allowed to type into it.
|
|
42
|
+
$driver.wait_true(5) do
|
|
43
|
+
$driver.execute_script %(au.mainApp().keyboard().type() !== 'UIAElementNil')
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# dismiss keyboard
|
|
47
|
+
js = <<-JS
|
|
38
48
|
if (au.mainApp().keyboard().type() !== "UIAElementNil") {
|
|
39
|
-
|
|
40
|
-
var endY = au.mainWindow.rect().size.height - 10;
|
|
41
|
-
au.flickApp(0, startY, 0, endY);
|
|
49
|
+
au.hideKeyboard('Done');
|
|
42
50
|
}
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
end
|
|
51
|
+
JS
|
|
52
|
+
|
|
53
|
+
$driver.execute_script js
|
|
54
|
+
|
|
55
|
+
# wait 5 seconds for keyboard to go away
|
|
56
|
+
$driver.wait_true(5) do
|
|
57
|
+
$driver.execute_script %(au.mainApp().keyboard().type() === 'UIAElementNil')
|
|
58
|
+
end
|
|
59
|
+
}
|
|
60
|
+
end # def type
|
|
61
|
+
end # Selenium::WebDriver::Element.class_eval
|
|
62
|
+
end # def patch_webdriver_element
|
|
63
|
+
end # module Ios
|
|
64
|
+
end # module Appium
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
# https://github.com/rails/rails/blob/e120d21211f9644e9b832e51ba7aa6c45448b782/activesupport/lib/active_support/core_ext/object/duplicable.rb
|
|
2
|
+
=begin
|
|
3
|
+
Copyright (c) 2005-2011 David Heinemeier Hansson
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
23
|
+
=end
|
|
24
|
+
#--
|
|
25
|
+
# Most objects are cloneable, but not all. For example you can't dup +nil+:
|
|
26
|
+
#
|
|
27
|
+
# nil.dup # => TypeError: can't dup NilClass
|
|
28
|
+
#
|
|
29
|
+
# Classes may signal their instances are not duplicable removing +dup+/+clone+
|
|
30
|
+
# or raising exceptions from them. So, to dup an arbitrary object you normally
|
|
31
|
+
# use an optimistic approach and are ready to catch an exception, say:
|
|
32
|
+
#
|
|
33
|
+
# arbitrary_object.dup rescue object
|
|
34
|
+
#
|
|
35
|
+
# Rails dups objects in a few critical spots where they are not that arbitrary.
|
|
36
|
+
# That rescue is very expensive (like 40 times slower than a predicate), and it
|
|
37
|
+
# is often triggered.
|
|
38
|
+
#
|
|
39
|
+
# That's why we hardcode the following cases and check duplicable? instead of
|
|
40
|
+
# using that rescue idiom.
|
|
41
|
+
#++
|
|
42
|
+
class Object
|
|
43
|
+
# Can you safely dup this object?
|
|
44
|
+
#
|
|
45
|
+
# False for +nil+, +false+, +true+, symbol, and number objects;
|
|
46
|
+
# true otherwise.
|
|
47
|
+
def duplicable?
|
|
48
|
+
true
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
class NilClass
|
|
53
|
+
# +nil+ is not duplicable:
|
|
54
|
+
#
|
|
55
|
+
# nil.duplicable? # => false
|
|
56
|
+
# nil.dup # => TypeError: can't dup NilClass
|
|
57
|
+
def duplicable?
|
|
58
|
+
false
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
class FalseClass
|
|
63
|
+
# +false+ is not duplicable:
|
|
64
|
+
#
|
|
65
|
+
# false.duplicable? # => false
|
|
66
|
+
# false.dup # => TypeError: can't dup FalseClass
|
|
67
|
+
def duplicable?
|
|
68
|
+
false
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
class TrueClass
|
|
73
|
+
# +true+ is not duplicable:
|
|
74
|
+
#
|
|
75
|
+
# true.duplicable? # => false
|
|
76
|
+
# true.dup # => TypeError: can't dup TrueClass
|
|
77
|
+
def duplicable?
|
|
78
|
+
false
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
class Symbol
|
|
83
|
+
# Symbols are not duplicable:
|
|
84
|
+
#
|
|
85
|
+
# :my_symbol.duplicable? # => false
|
|
86
|
+
# :my_symbol.dup # => TypeError: can't dup Symbol
|
|
87
|
+
def duplicable?
|
|
88
|
+
false
|
|
89
|
+
end
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
class Numeric
|
|
93
|
+
# Numbers are not duplicable:
|
|
94
|
+
#
|
|
95
|
+
# 3.duplicable? # => false
|
|
96
|
+
# 3.dup # => TypeError: can't dup Fixnum
|
|
97
|
+
def duplicable?
|
|
98
|
+
false
|
|
99
|
+
end
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
require 'bigdecimal'
|
|
103
|
+
class BigDecimal
|
|
104
|
+
# Needed to support Ruby 1.9.x, as it doesn't allow dup on BigDecimal, instead
|
|
105
|
+
# raises TypeError exception. Checking here on the runtime whether BigDecimal
|
|
106
|
+
# will allow dup or not.
|
|
107
|
+
begin
|
|
108
|
+
BigDecimal.new('4.56').dup
|
|
109
|
+
|
|
110
|
+
def duplicable?
|
|
111
|
+
true
|
|
112
|
+
end
|
|
113
|
+
rescue TypeError
|
|
114
|
+
# can't dup, so use superclass implementation
|
|
115
|
+
end
|
|
116
|
+
end
|
data/readme.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#### appium_lib [](http://badge.fury.io/rb/appium_lib)[](https://gemnasium.com/appium/ruby_lib)
|
|
2
2
|
|
|
3
3
|
- [appium_lib on RubyGems](https://rubygems.org/gems/appium_lib)
|
|
4
4
|
- [Documentation for appium_lib](https://github.com/appium/ruby_lib/tree/master/docs)
|
|
@@ -72,6 +72,11 @@ apk = {
|
|
|
72
72
|
Appium::Driver.new(apk).start_driver
|
|
73
73
|
```
|
|
74
74
|
|
|
75
|
+
#### Other capabilities
|
|
76
|
+
|
|
77
|
+
- `no_reset` If true, the app will not be reset
|
|
78
|
+
- `full_reset` If true, the app will be uninstalled. When false, fast reset is activated.
|
|
79
|
+
|
|
75
80
|
#### iOS env vars
|
|
76
81
|
|
|
77
82
|
- `APP_PATH` Path to the .app folder
|
data/release_notes.md
CHANGED
|
@@ -1,3 +1,121 @@
|
|
|
1
|
+
#### v1.0.0 2014-04-29
|
|
2
|
+
|
|
3
|
+
- [5a3ecbb](https://github.com/appium/ruby_lib/commit/5a3ecbb4147693ce3c2c6b693e64074022d03511) Release 1.0.0
|
|
4
|
+
- [4b6989a](https://github.com/appium/ruby_lib/commit/4b6989a51c25b3b01398fe6bee2da908ab61a7e2) Merge pull request #172 from DylanLacey/flight
|
|
5
|
+
- [0824188](https://github.com/appium/ruby_lib/commit/0824188043f76f5243de4d3753ef9e036fcb5ba6) Airline mode.
|
|
6
|
+
- [7935fc0](https://github.com/appium/ruby_lib/commit/7935fc02afb7720306c7a273d205a2db9bdfb417) Prepare for release
|
|
7
|
+
- [583a0a6](https://github.com/appium/ruby_lib/commit/583a0a6b7b67cdce4e533f06d98968021c0ed5d9) Update version helper
|
|
8
|
+
- [982b102](https://github.com/appium/ruby_lib/commit/982b1021ed5e202ae2249791aa9ab091e7cb1b24) Update docs
|
|
9
|
+
- [74f9e5e](https://github.com/appium/ruby_lib/commit/74f9e5ec97059f036c5c935bc9dcb5fb0000d813) Improve docs
|
|
10
|
+
- [b5414b7](https://github.com/appium/ruby_lib/commit/b5414b7885804ccabddb53315a12c3b525924654) Update documentation for appium 1.0
|
|
11
|
+
- [de25322](https://github.com/appium/ruby_lib/commit/de25322395c233e69c70cc2c9417913e8f393dbd) Fix ios test
|
|
12
|
+
- [3943f19](https://github.com/appium/ruby_lib/commit/3943f194cd82bcc6880c13fd712041e111440aa5) Do not sort files
|
|
13
|
+
- [e7bd82a](https://github.com/appium/ruby_lib/commit/e7bd82a133edcf27fa5c8d5cf850d1783ef4cd4c) Fix load_appium_txt
|
|
14
|
+
- [fe792a5](https://github.com/appium/ruby_lib/commit/fe792a573ffb4ce5cfb3bd4f67cb0506a61dbf21) Fix comment
|
|
15
|
+
- [bb9f44a](https://github.com/appium/ruby_lib/commit/bb9f44af04add6f4c1007f3641417f6366ae0b3e) Fix error message about missing platformName
|
|
16
|
+
- [45e56b9](https://github.com/appium/ruby_lib/commit/45e56b9326d2ab9fad29d04626e34fdaf58f9659) Fix flaky android tests by using wait
|
|
17
|
+
- [723b304](https://github.com/appium/ruby_lib/commit/723b30414719a2e728cfd32b0a43d09daa21c69b) Rename closeApp to close_app
|
|
18
|
+
- [ec2f6ea](https://github.com/appium/ruby_lib/commit/ec2f6eab1f8f8ab40ef41a82d0c6de1a11705bf0) Improve android/patch test
|
|
19
|
+
- [e3a7ad5](https://github.com/appium/ruby_lib/commit/e3a7ad5b4cb65a351bf2f61587fe35c0af465042) Merge pull request #169 from bootstraponline/master
|
|
20
|
+
- [bbcd38b](https://github.com/appium/ruby_lib/commit/bbcd38b184ec047adc73188a1ec86e8cfb09de61) Fix complex find
|
|
21
|
+
- [684aa0d](https://github.com/appium/ruby_lib/commit/684aa0df432e2c618637c873ca62f5a31626beb2) Merge pull request #168 from DylanLacey/master
|
|
22
|
+
- [7475d38](https://github.com/appium/ruby_lib/commit/7475d38f069425e69bc81e9c7157734abfb780da) Remove unused error method
|
|
23
|
+
- [6875a48](https://github.com/appium/ruby_lib/commit/6875a48705114d3d651f509d1e2f4f484e9650f3) Use new complex_find method.
|
|
24
|
+
- [86371c3](https://github.com/appium/ruby_lib/commit/86371c3c74fd50666aee96bd575adefe3d4618e8) Fix common/helper
|
|
25
|
+
- [e765488](https://github.com/appium/ruby_lib/commit/e765488f3dc3698092b8751ad400ba67bdcae220) Update Android common/device
|
|
26
|
+
- [79de9b5](https://github.com/appium/ruby_lib/commit/79de9b59a604f7fc6c74fefb6743c5ede52b6193) Fix android common/helper
|
|
27
|
+
- [7ac67e3](https://github.com/appium/ruby_lib/commit/7ac67e33655898446b75d4c7ca17bd26bf21fa35) Fix android/helper
|
|
28
|
+
- [4754137](https://github.com/appium/ruby_lib/commit/47541378b4fdcf2daf36109be59b9e591d5f5666) Fix id resolution. Fix patch and helper
|
|
29
|
+
- [38af1aa](https://github.com/appium/ruby_lib/commit/38af1aafb8525186f3ae10ee888ae52945753f6e) Fix android alert, text and textfield
|
|
30
|
+
- [1f82df4](https://github.com/appium/ruby_lib/commit/1f82df4543e2de54564bd89e2ed8275612beb770) Fix page commnand on Android
|
|
31
|
+
- [b3cd998](https://github.com/appium/ruby_lib/commit/b3cd9987f391447dc7bf86f97cc99b75f166b969) Fix android/element/button
|
|
32
|
+
- [6e215ff](https://github.com/appium/ruby_lib/commit/6e215ff60752fbdc43b23829676215d10d0004d1) Reorder iOS text methods
|
|
33
|
+
- [ead35f9](https://github.com/appium/ruby_lib/commit/ead35f99908ea5e9eac298308979a46dc0028751) Refactor iOS textfield xpath
|
|
34
|
+
- [b26d77d](https://github.com/appium/ruby_lib/commit/b26d77d70967c14aef227dc651252f3ff675850e) Move iOS specific helpers out of common
|
|
35
|
+
- [a97c1cd](https://github.com/appium/ruby_lib/commit/a97c1cdfa4b545283e463f5e792f7c413654043f) Merge pull request #163 from DylanLacey/master
|
|
36
|
+
- [537099d](https://github.com/appium/ruby_lib/commit/537099d3afd5e950ef0a1042890c3134ee125578) Update tests to meet new code requirements.
|
|
37
|
+
- [c7c6d10](https://github.com/appium/ruby_lib/commit/c7c6d10152dd61b856c1dfe828aa70dc4e4e48c3) Ensure elements on iOS are visible
|
|
38
|
+
- [e0cb0c9](https://github.com/appium/ruby_lib/commit/e0cb0c911f831c4f8288d9c467b5546128c4e467) Update Rakefile
|
|
39
|
+
- [6a174e2](https://github.com/appium/ruby_lib/commit/6a174e2a05fd6612f2592e0734122d60c2101d86) Modern ruby defaults to utf-8
|
|
40
|
+
- [5540ffc](https://github.com/appium/ruby_lib/commit/5540ffc0f93abc85cefd7e397e39c8022071e171) Update ios_tests
|
|
41
|
+
- [ecc7d02](https://github.com/appium/ruby_lib/commit/ecc7d0262e902f0e46e49f6395a00aa88558978c) Update iOS support
|
|
42
|
+
- [8845a1e](https://github.com/appium/ruby_lib/commit/8845a1ed82d06ad3164dadc6fcc57c23482f5ca9) Rewrite iOS support for appium 1.0
|
|
43
|
+
- [b0e0bfd](https://github.com/appium/ruby_lib/commit/b0e0bfd43edd011f2f628d588de7bef7829e0db6) Update textfield and flaky.txt
|
|
44
|
+
- [7c40873](https://github.com/appium/ruby_lib/commit/7c40873ed4521c004b5033378fd87b44714264af) Fix ios[ios/element/textfield]
|
|
45
|
+
- [ee0ccd2](https://github.com/appium/ruby_lib/commit/ee0ccd2f443c4f2ce80b1ea80f17b2d11d870a08) Fix ios[ios/element/alert]
|
|
46
|
+
- [f439730](https://github.com/appium/ruby_lib/commit/f4397302cc9ffc42759fe946e0da643df2c89100) Fix ios[common/helper]
|
|
47
|
+
- [3582d34](https://github.com/appium/ruby_lib/commit/3582d3495976bb724b39febf92d850dd5fd08508) Fix iOS common/element/button
|
|
48
|
+
- [67f719e](https://github.com/appium/ruby_lib/commit/67f719eca1812f143e8b2445ceac154c87ec13c5) Add flaky.txt
|
|
49
|
+
- [7847df2](https://github.com/appium/ruby_lib/commit/7847df21888ce5e089e81be24d035d4f8d1d7b92) Merge pull request #159 from DylanLacey/master
|
|
50
|
+
- [4c816e2](https://github.com/appium/ruby_lib/commit/4c816e252a2e018e3db9730ea56a7a23eb7adbdd) Fix wait
|
|
51
|
+
- [b58f283](https://github.com/appium/ruby_lib/commit/b58f283503af8ed3a16e054dd589b1662be533cb) Update one_test runner
|
|
52
|
+
- [52b2a5c](https://github.com/appium/ruby_lib/commit/52b2a5cff30cae5c27e878071fd9a2c4ce16c48f) Enable running with flake
|
|
53
|
+
- [9861a88](https://github.com/appium/ruby_lib/commit/9861a885b9bbdc45eaddf00589f854ec2355b24e) Update tag references
|
|
54
|
+
- [326aeb5](https://github.com/appium/ruby_lib/commit/326aeb50375300662167f0f9f23211efa59fb052) Don't call mobile methods
|
|
55
|
+
- [09329d1](https://github.com/appium/ruby_lib/commit/09329d1d0fb583733b7530d6fc1161611e2b16d3) Name before_first/after_last for better error messages
|
|
56
|
+
- [5302418](https://github.com/appium/ruby_lib/commit/5302418d5180d02c87139662b7b97d53042faf24) Fix ios/element/generic
|
|
57
|
+
- [9bf869f](https://github.com/appium/ruby_lib/commit/9bf869f889e80754132741bce4776d1e2bf0bf14) ios/element/text is passing
|
|
58
|
+
- [2e10eb3](https://github.com/appium/ruby_lib/commit/2e10eb3407408c2979384c73a31c4ddbe8fc2dd3) Start updating for new XPath
|
|
59
|
+
- [62c977a](https://github.com/appium/ruby_lib/commit/62c977a158ebb85bac2603be1321723d5c785931) Add note about source_window + appium 1.0
|
|
60
|
+
- [2bb509f](https://github.com/appium/ruby_lib/commit/2bb509ff60733c950c4edba1754bddbfa1855003) Replace mobile methods for appium 1.0
|
|
61
|
+
- [2c8142b](https://github.com/appium/ruby_lib/commit/2c8142b0026c0222d635c936448564002ca5eadb) Fix page_class to work with Appium 1.0
|
|
62
|
+
- [265b658](https://github.com/appium/ruby_lib/commit/265b65833ed3971a1bf41b647edf0613786258bd) Use nokogiri to parse XML
|
|
63
|
+
- [8c96eae](https://github.com/appium/ruby_lib/commit/8c96eaeab594d940ce30ede29f6253e1e5fd7370) Merge pull request #157 from appium/update_spec
|
|
64
|
+
- [5c9e840](https://github.com/appium/ruby_lib/commit/5c9e840b7edafd083f3d5f3003086550baf3c242) Update tests to work with new spec gem
|
|
65
|
+
- [0331fe0](https://github.com/appium/ruby_lib/commit/0331fe0f4c897b4cd41b67eecd6357416925d629) Merge pull request #155 from DylanLacey/keyevent
|
|
66
|
+
- [3a9bebd](https://github.com/appium/ruby_lib/commit/3a9bebd48cc8ecc8a1d8e9c50d1db433e66bae1f) Add keyevent method
|
|
67
|
+
- [758afbf](https://github.com/appium/ruby_lib/commit/758afbfee3beaf435ecc8c0f47584deb91b3ae2f) Merge pull request #154 from DylanLacey/master
|
|
68
|
+
- [294ba49](https://github.com/appium/ruby_lib/commit/294ba49f4f98cce498f2b8217e639ab0c33c5036) Extend Appium::Device methods before promoting Appium methods.
|
|
69
|
+
- [d432e36](https://github.com/appium/ruby_lib/commit/d432e365219914091f7a1bf532a758cfd2647aed) Merge pull request #149 from DylanLacey/chainz
|
|
70
|
+
- [965ec7b](https://github.com/appium/ruby_lib/commit/965ec7bab13e8a92a4f5065ff1c4142ba58043d2) Add multi-touch actions, touch actions.
|
|
71
|
+
- [d8cbacd](https://github.com/appium/ruby_lib/commit/d8cbacd938e41ce0ccc817f354ab6580f4742636) textfield_named to use chained find_element
|
|
72
|
+
- [e76e6dd](https://github.com/appium/ruby_lib/commit/e76e6dd5f2046a73a2458a3bc03aa546c810ed20) Merge pull request #151 from DylanLacey/docs
|
|
73
|
+
- [ecbbb18](https://github.com/appium/ruby_lib/commit/ecbbb18fa09b861a733f7b0071d2164e712697c2) Merge pull request #150 from DylanLacey/files
|
|
74
|
+
- [7ef61e1](https://github.com/appium/ruby_lib/commit/7ef61e1cd1733217479646060c5131ef3235b852) Update doc
|
|
75
|
+
- [6c97d17](https://github.com/appium/ruby_lib/commit/6c97d17ac177656c96a00ee29d64293e63a84c22) Add file methods
|
|
76
|
+
- [aea8c5d](https://github.com/appium/ruby_lib/commit/aea8c5dd688778ba3cf076390a89455f5bec36cf) Update doc
|
|
77
|
+
- [854d2c6](https://github.com/appium/ruby_lib/commit/854d2c689f9ea43701b4ae18fa83b121bf227f85) Fix invalid warnings Fix #147
|
|
78
|
+
- [0408cc0](https://github.com/appium/ruby_lib/commit/0408cc0c7a99d3347cf6b762f28b1c4fa9339e2b) Fix driver docs
|
|
79
|
+
- [e72c170](https://github.com/appium/ruby_lib/commit/e72c17094ff249f822346be9a62c135156d7758d) Remove Selendroid specific code
|
|
80
|
+
- [4e9f3d6](https://github.com/appium/ruby_lib/commit/4e9f3d6f95fbd97c4db118e22de2741a49993d21) Validate platformName Fix #146
|
|
81
|
+
- [38fc42e](https://github.com/appium/ruby_lib/commit/38fc42e599b02dcc17d007812cf9defbd21a6573) Clarify wait_true doc Fix #127
|
|
82
|
+
- [285a97b](https://github.com/appium/ruby_lib/commit/285a97b0e15eb42034a91a2b59d8ba9bd8b0abe9) Fix ignore, wait, wait_true
|
|
83
|
+
- [1b160b4](https://github.com/appium/ruby_lib/commit/1b160b46ecab5fccd45191f5af5f18eaf86a3188) Fix typing on iOS
|
|
84
|
+
- [44eb53b](https://github.com/appium/ruby_lib/commit/44eb53b61c994dd16fd8636dd4bf43b70c98226e) Add comments to end
|
|
85
|
+
- [a4d2c55](https://github.com/appium/ruby_lib/commit/a4d2c553a46b0cd64ecbc67193023e9802db2c0d) Add OpenStruct support to Awesome Print
|
|
86
|
+
- [12b35a6](https://github.com/appium/ruby_lib/commit/12b35a612fcf7bb05173ef3e3ece66a0ecab4a0f) All tests passing
|
|
87
|
+
- [01f4ecf](https://github.com/appium/ruby_lib/commit/01f4ecfdf5b5446c6eced06ca86cc85ff42edecd) Fix 'undefined' is not a function
|
|
88
|
+
- [af76d4d](https://github.com/appium/ruby_lib/commit/af76d4daba1cc785325e62f4a1392895da7c7731) Fix broken ends
|
|
89
|
+
- [9a214aa](https://github.com/appium/ruby_lib/commit/9a214aa7fb59042606956be1686c6c5a459a192c) Don't use add_to_path
|
|
90
|
+
- [67a997c](https://github.com/appium/ruby_lib/commit/67a997c8396b4c8681f63be5d37f8055d39d220e) Clean up module syntax
|
|
91
|
+
- [8be5b7c](https://github.com/appium/ruby_lib/commit/8be5b7c5b3dbdc1682a48b9ca85f2389c2a19502) Merge pull request #142 from appium/wip
|
|
92
|
+
- [fb61522](https://github.com/appium/ruby_lib/commit/fb615225eae819eef70153a76e954ffa2991845e) Rename test folders
|
|
93
|
+
- [8f2049f](https://github.com/appium/ruby_lib/commit/8f2049ff18e3dc20b7cd7a30cd15b0fcb1676341) Update capabilities and appium.txt
|
|
94
|
+
- [62dc430](https://github.com/appium/ruby_lib/commit/62dc43030d047c3baaec28f524430893ac427ff9) Merge pull request #139 from DylanLacey/complex_find
|
|
95
|
+
- [bc20a71](https://github.com/appium/ruby_lib/commit/bc20a7181b5159bbb8cd304e182a49765fec5b9d) Add complex find
|
|
96
|
+
- [38a9429](https://github.com/appium/ruby_lib/commit/38a942973adc8768d7e5e1b270bad8d68323e33b) Merge pull request #140 from DylanLacey/hide
|
|
97
|
+
- [f6d5987](https://github.com/appium/ruby_lib/commit/f6d598704f096dccfc0feedf28850d7059cd79f8) Add keyboard hidin'
|
|
98
|
+
- [c0076e9](https://github.com/appium/ruby_lib/commit/c0076e92cdbeb3ce90fab536480a746c6acf933b) Merge pull request #138 from DylanLacey/noarg_methods
|
|
99
|
+
- [23f24c9](https://github.com/appium/ruby_lib/commit/23f24c9193318c2cfb3432d01459aaf3b8121ab6) add current_activity, background_app, app_installed
|
|
100
|
+
- [eb12171](https://github.com/appium/ruby_lib/commit/eb121710af6c7a3d128754a359640c36b7e73501) Merge pull request #135 from DylanLacey/contexts
|
|
101
|
+
- [b8f3a91](https://github.com/appium/ruby_lib/commit/b8f3a919d11fc347b84ce4c1a38aab2705461553) Add context switching
|
|
102
|
+
- [c13b877](https://github.com/appium/ruby_lib/commit/c13b877c75bd67390755720cc15842411a2d7218) Merge pull request #137 from DylanLacey/accessibility_id
|
|
103
|
+
- [5c9d18f](https://github.com/appium/ruby_lib/commit/5c9d18f286c31f8ddbc6ad5cdd0b34a1041e775f) Add accessiblity_id finder
|
|
104
|
+
- [5d1722f](https://github.com/appium/ruby_lib/commit/5d1722f965db7cac26eb7c14b3080f22ba5e1664) Merge pull request #136 from DylanLacey/uiauto_finders
|
|
105
|
+
- [fdd14da](https://github.com/appium/ruby_lib/commit/fdd14daf4811aac740bdd7e1662f2d61aa43c359) Add uiautomat[ion|or] locators
|
|
106
|
+
- [ef42569](https://github.com/appium/ruby_lib/commit/ef42569d2d0bc4bb741ed0132ba78371bb84b5f4) Merge pull request #133 from DylanLacey/master
|
|
107
|
+
- [a6fbb15](https://github.com/appium/ruby_lib/commit/a6fbb15b1909df4d69c059a754fc7973123b17a3) Log warning when methods are added to Selenium
|
|
108
|
+
- [6590e9f](https://github.com/appium/ruby_lib/commit/6590e9f5f30b7fa07c16390c965077a780116d44) All tests passing on master branch of appium
|
|
109
|
+
- [cd5a25d](https://github.com/appium/ruby_lib/commit/cd5a25d395ec0d7f7361ce0a18a14aa4dc81f486) Update android tests
|
|
110
|
+
- [7fc8c55](https://github.com/appium/ruby_lib/commit/7fc8c55b9c0866b14ce23f0c72fc5580d0935125) Update android tests
|
|
111
|
+
- [6e32210](https://github.com/appium/ruby_lib/commit/6e3221015a028b184d0888d8d0281adc88c91d05) Add ruby_lib_ios and ruby_lib_android tests to ruby_lib
|
|
112
|
+
- [b9b449a](https://github.com/appium/ruby_lib/commit/b9b449a1502db280728cf8b5d20ec36f7ae59a1d) Merge pull request #129 from DylanLacey/master
|
|
113
|
+
- [f87a379](https://github.com/appium/ruby_lib/commit/f87a37906fe8cd66c549c351c8808d79586a1f79) Added calls to explicit endpoints for :install, :remove, :close, :launch, :lock, :shake.
|
|
114
|
+
- [2ea9aa5](https://github.com/appium/ruby_lib/commit/2ea9aa598d38e2163a01a90ceee4473372999d67) Upgrade to SVG badges
|
|
115
|
+
- [003bbe6](https://github.com/appium/ruby_lib/commit/003bbe6a92c2538c51dbea56f69fb525eec22db6) Status is in the official bindings
|
|
116
|
+
- [d0b6198](https://github.com/appium/ruby_lib/commit/d0b619833457c974b500b00242ceb2fc7598f5d0) Document how to activate fast reset
|
|
117
|
+
|
|
118
|
+
|
|
1
119
|
#### v0.24.1 2014-03-26
|
|
2
120
|
|
|
3
121
|
- [a07da28](https://github.com/appium/ruby_lib/commit/a07da28de1e7133c77070859c2c35d7bd2635684) Release 0.24.1
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appium_lib
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- code@bootstraponline.com
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-04-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: selenium-webdriver
|
|
@@ -16,20 +16,20 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '2.
|
|
19
|
+
version: '2.41'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 2.
|
|
22
|
+
version: 2.41.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
26
|
requirements:
|
|
27
27
|
- - "~>"
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: '2.
|
|
29
|
+
version: '2.41'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 2.
|
|
32
|
+
version: 2.41.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: awesome_print
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -110,26 +110,82 @@ dependencies:
|
|
|
110
110
|
- - ">="
|
|
111
111
|
- !ruby/object:Gem::Version
|
|
112
112
|
version: 0.3.8
|
|
113
|
+
- !ruby/object:Gem::Dependency
|
|
114
|
+
name: nokogiri
|
|
115
|
+
requirement: !ruby/object:Gem::Requirement
|
|
116
|
+
requirements:
|
|
117
|
+
- - "~>"
|
|
118
|
+
- !ruby/object:Gem::Version
|
|
119
|
+
version: 1.6.1
|
|
120
|
+
type: :runtime
|
|
121
|
+
prerelease: false
|
|
122
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
123
|
+
requirements:
|
|
124
|
+
- - "~>"
|
|
125
|
+
- !ruby/object:Gem::Version
|
|
126
|
+
version: 1.6.1
|
|
127
|
+
- !ruby/object:Gem::Dependency
|
|
128
|
+
name: hashdiff
|
|
129
|
+
requirement: !ruby/object:Gem::Requirement
|
|
130
|
+
requirements:
|
|
131
|
+
- - "~>"
|
|
132
|
+
- !ruby/object:Gem::Version
|
|
133
|
+
version: 0.2.0
|
|
134
|
+
type: :development
|
|
135
|
+
prerelease: false
|
|
136
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
137
|
+
requirements:
|
|
138
|
+
- - "~>"
|
|
139
|
+
- !ruby/object:Gem::Version
|
|
140
|
+
version: 0.2.0
|
|
141
|
+
- !ruby/object:Gem::Dependency
|
|
142
|
+
name: spec
|
|
143
|
+
requirement: !ruby/object:Gem::Requirement
|
|
144
|
+
requirements:
|
|
145
|
+
- - "~>"
|
|
146
|
+
- !ruby/object:Gem::Version
|
|
147
|
+
version: 5.3.4
|
|
148
|
+
type: :development
|
|
149
|
+
prerelease: false
|
|
150
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
151
|
+
requirements:
|
|
152
|
+
- - "~>"
|
|
153
|
+
- !ruby/object:Gem::Version
|
|
154
|
+
version: 5.3.4
|
|
155
|
+
- !ruby/object:Gem::Dependency
|
|
156
|
+
name: fakefs
|
|
157
|
+
requirement: !ruby/object:Gem::Requirement
|
|
158
|
+
requirements:
|
|
159
|
+
- - "~>"
|
|
160
|
+
- !ruby/object:Gem::Version
|
|
161
|
+
version: 0.5.0
|
|
162
|
+
type: :development
|
|
163
|
+
prerelease: false
|
|
164
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
165
|
+
requirements:
|
|
166
|
+
- - "~>"
|
|
167
|
+
- !ruby/object:Gem::Version
|
|
168
|
+
version: 0.5.0
|
|
113
169
|
- !ruby/object:Gem::Dependency
|
|
114
170
|
name: rake
|
|
115
171
|
requirement: !ruby/object:Gem::Requirement
|
|
116
172
|
requirements:
|
|
117
173
|
- - "~>"
|
|
118
174
|
- !ruby/object:Gem::Version
|
|
119
|
-
version: '10.
|
|
175
|
+
version: '10.2'
|
|
120
176
|
- - ">="
|
|
121
177
|
- !ruby/object:Gem::Version
|
|
122
|
-
version: 10.
|
|
178
|
+
version: 10.2.2
|
|
123
179
|
type: :development
|
|
124
180
|
prerelease: false
|
|
125
181
|
version_requirements: !ruby/object:Gem::Requirement
|
|
126
182
|
requirements:
|
|
127
183
|
- - "~>"
|
|
128
184
|
- !ruby/object:Gem::Version
|
|
129
|
-
version: '10.
|
|
185
|
+
version: '10.2'
|
|
130
186
|
- - ">="
|
|
131
187
|
- !ruby/object:Gem::Version
|
|
132
|
-
version: 10.
|
|
188
|
+
version: 10.2.2
|
|
133
189
|
- !ruby/object:Gem::Dependency
|
|
134
190
|
name: yard
|
|
135
191
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -161,6 +217,29 @@ files:
|
|
|
161
217
|
- Gemfile
|
|
162
218
|
- LICENSE-2.0.txt
|
|
163
219
|
- Rakefile
|
|
220
|
+
- android_tests/Gemfile
|
|
221
|
+
- android_tests/LICENSE-2.0.txt
|
|
222
|
+
- android_tests/Rakefile
|
|
223
|
+
- android_tests/api.apk
|
|
224
|
+
- android_tests/appium.txt
|
|
225
|
+
- android_tests/flaky.txt
|
|
226
|
+
- android_tests/lib/android/specs/android/dynamic.rb
|
|
227
|
+
- android_tests/lib/android/specs/android/element/alert.rb
|
|
228
|
+
- android_tests/lib/android/specs/android/element/button.rb
|
|
229
|
+
- android_tests/lib/android/specs/android/element/generic.rb
|
|
230
|
+
- android_tests/lib/android/specs/android/element/text.rb
|
|
231
|
+
- android_tests/lib/android/specs/android/element/textfield.rb
|
|
232
|
+
- android_tests/lib/android/specs/android/helper.rb
|
|
233
|
+
- android_tests/lib/android/specs/android/patch.rb
|
|
234
|
+
- android_tests/lib/android/specs/common/device.rb
|
|
235
|
+
- android_tests/lib/android/specs/common/element/window.rb
|
|
236
|
+
- android_tests/lib/android/specs/common/helper.rb
|
|
237
|
+
- android_tests/lib/android/specs/common/patch.rb
|
|
238
|
+
- android_tests/lib/android/specs/common/version.rb
|
|
239
|
+
- android_tests/lib/android/specs/driver.rb
|
|
240
|
+
- android_tests/lib/format.rb
|
|
241
|
+
- android_tests/lib/run.rb
|
|
242
|
+
- android_tests/readme.md
|
|
164
243
|
- appium_lib.gemspec
|
|
165
244
|
- docs/android_docs.md
|
|
166
245
|
- docs/api_19_webview.md
|
|
@@ -168,25 +247,104 @@ files:
|
|
|
168
247
|
- docs/ios_docs.md
|
|
169
248
|
- docs_gen/docs_from_js.md
|
|
170
249
|
- docs_gen/make_docs.rb
|
|
250
|
+
- ios_tests/Gemfile
|
|
251
|
+
- ios_tests/LICENSE-2.0.txt
|
|
252
|
+
- ios_tests/Rakefile
|
|
253
|
+
- ios_tests/UICatalog.app.zip
|
|
254
|
+
- ios_tests/UICatalog.app/12-6AM.png
|
|
255
|
+
- ios_tests/UICatalog.app/12-6PM.png
|
|
256
|
+
- ios_tests/UICatalog.app/6-12AM.png
|
|
257
|
+
- ios_tests/UICatalog.app/6-12PM.png
|
|
258
|
+
- ios_tests/UICatalog.app/Default-568h@2x.png
|
|
259
|
+
- ios_tests/UICatalog.app/Default@2x.png
|
|
260
|
+
- ios_tests/UICatalog.app/Info.plist
|
|
261
|
+
- ios_tests/UICatalog.app/PkgInfo
|
|
262
|
+
- ios_tests/UICatalog.app/UIButton_custom.png
|
|
263
|
+
- ios_tests/UICatalog.app/UICatalog
|
|
264
|
+
- ios_tests/UICatalog.app/blueButton.png
|
|
265
|
+
- ios_tests/UICatalog.app/bookmarkImage.png
|
|
266
|
+
- ios_tests/UICatalog.app/bookmarkImageHighlighted.png
|
|
267
|
+
- ios_tests/UICatalog.app/divider.png
|
|
268
|
+
- ios_tests/UICatalog.app/en.lproj/AlertsViewController.nib
|
|
269
|
+
- ios_tests/UICatalog.app/en.lproj/ButtonsViewController.nib
|
|
270
|
+
- ios_tests/UICatalog.app/en.lproj/ControlsViewController.nib
|
|
271
|
+
- ios_tests/UICatalog.app/en.lproj/ImagesViewController.nib
|
|
272
|
+
- ios_tests/UICatalog.app/en.lproj/Localizable.strings
|
|
273
|
+
- ios_tests/UICatalog.app/en.lproj/MainWindow.nib
|
|
274
|
+
- ios_tests/UICatalog.app/en.lproj/PickerViewController.nib
|
|
275
|
+
- ios_tests/UICatalog.app/en.lproj/SearchBarController.nib
|
|
276
|
+
- ios_tests/UICatalog.app/en.lproj/SegmentViewController.nib
|
|
277
|
+
- ios_tests/UICatalog.app/en.lproj/TextFieldController.nib
|
|
278
|
+
- ios_tests/UICatalog.app/en.lproj/TextViewController.nib
|
|
279
|
+
- ios_tests/UICatalog.app/en.lproj/ToolbarViewController.nib
|
|
280
|
+
- ios_tests/UICatalog.app/en.lproj/TransitionViewController.nib
|
|
281
|
+
- ios_tests/UICatalog.app/en.lproj/WebViewController.nib
|
|
282
|
+
- ios_tests/UICatalog.app/orangeslide.png
|
|
283
|
+
- ios_tests/UICatalog.app/scene1.jpg
|
|
284
|
+
- ios_tests/UICatalog.app/scene2.jpg
|
|
285
|
+
- ios_tests/UICatalog.app/scene3.jpg
|
|
286
|
+
- ios_tests/UICatalog.app/scene4.jpg
|
|
287
|
+
- ios_tests/UICatalog.app/scene5.jpg
|
|
288
|
+
- ios_tests/UICatalog.app/searchBarBackground.png
|
|
289
|
+
- ios_tests/UICatalog.app/segment_check.png
|
|
290
|
+
- ios_tests/UICatalog.app/segment_search.png
|
|
291
|
+
- ios_tests/UICatalog.app/segment_tools.png
|
|
292
|
+
- ios_tests/UICatalog.app/segmentedBackground.png
|
|
293
|
+
- ios_tests/UICatalog.app/slider_ball.png
|
|
294
|
+
- ios_tests/UICatalog.app/toolbarBackground.png
|
|
295
|
+
- ios_tests/UICatalog.app/whiteButton.png
|
|
296
|
+
- ios_tests/UICatalog.app/yellowslide.png
|
|
297
|
+
- ios_tests/appium.txt
|
|
298
|
+
- ios_tests/flaky.txt
|
|
299
|
+
- ios_tests/lib/format.rb
|
|
300
|
+
- ios_tests/lib/ios/specs/common/element/window.rb
|
|
301
|
+
- ios_tests/lib/ios/specs/common/helper.rb
|
|
302
|
+
- ios_tests/lib/ios/specs/common/patch.rb
|
|
303
|
+
- ios_tests/lib/ios/specs/common/version.rb
|
|
304
|
+
- ios_tests/lib/ios/specs/device/device.rb
|
|
305
|
+
- ios_tests/lib/ios/specs/device/multi_touch.rb
|
|
306
|
+
- ios_tests/lib/ios/specs/device/touch_actions.rb
|
|
307
|
+
- ios_tests/lib/ios/specs/driver.rb
|
|
308
|
+
- ios_tests/lib/ios/specs/ios/element/alert.rb
|
|
309
|
+
- ios_tests/lib/ios/specs/ios/element/button.rb
|
|
310
|
+
- ios_tests/lib/ios/specs/ios/element/generic.rb
|
|
311
|
+
- ios_tests/lib/ios/specs/ios/element/text.rb
|
|
312
|
+
- ios_tests/lib/ios/specs/ios/element/textfield.rb
|
|
313
|
+
- ios_tests/lib/ios/specs/ios/helper.rb
|
|
314
|
+
- ios_tests/lib/ios/specs/ios/patch.rb
|
|
315
|
+
- ios_tests/lib/run.rb
|
|
316
|
+
- ios_tests/readme.md
|
|
317
|
+
- ios_tests/upload/sauce_storage.rb
|
|
318
|
+
- ios_tests/upload/upload.rb
|
|
171
319
|
- lib/appium_lib.rb
|
|
172
320
|
- lib/appium_lib/android/dynamic.rb
|
|
173
321
|
- lib/appium_lib/android/element/alert.rb
|
|
322
|
+
- lib/appium_lib/android/element/button.rb
|
|
174
323
|
- lib/appium_lib/android/element/generic.rb
|
|
324
|
+
- lib/appium_lib/android/element/text.rb
|
|
175
325
|
- lib/appium_lib/android/element/textfield.rb
|
|
176
326
|
- lib/appium_lib/android/helper.rb
|
|
327
|
+
- lib/appium_lib/android/mobile_methods.rb
|
|
177
328
|
- lib/appium_lib/android/patch.rb
|
|
178
|
-
- lib/appium_lib/
|
|
179
|
-
- lib/appium_lib/common/element/text.rb
|
|
329
|
+
- lib/appium_lib/awesome_print/ostruct.rb
|
|
180
330
|
- lib/appium_lib/common/element/window.rb
|
|
181
331
|
- lib/appium_lib/common/helper.rb
|
|
182
332
|
- lib/appium_lib/common/patch.rb
|
|
183
333
|
- lib/appium_lib/common/version.rb
|
|
334
|
+
- lib/appium_lib/device/device.rb
|
|
335
|
+
- lib/appium_lib/device/multi_touch.rb
|
|
336
|
+
- lib/appium_lib/device/touch_actions.rb
|
|
184
337
|
- lib/appium_lib/driver.rb
|
|
185
338
|
- lib/appium_lib/ios/element/alert.rb
|
|
339
|
+
- lib/appium_lib/ios/element/button.rb
|
|
186
340
|
- lib/appium_lib/ios/element/generic.rb
|
|
341
|
+
- lib/appium_lib/ios/element/text.rb
|
|
187
342
|
- lib/appium_lib/ios/element/textfield.rb
|
|
188
343
|
- lib/appium_lib/ios/helper.rb
|
|
344
|
+
- lib/appium_lib/ios/mobile_methods.rb
|
|
189
345
|
- lib/appium_lib/ios/patch.rb
|
|
346
|
+
- lib/appium_lib/logger.rb
|
|
347
|
+
- lib/appium_lib/rails/duplicable.rb
|
|
190
348
|
- readme.md
|
|
191
349
|
- release_notes.md
|
|
192
350
|
homepage: https://github.com/appium/ruby_lib
|