appium_lib 9.4.2 → 9.4.3
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/CHANGELOG.md +11 -0
- data/Rakefile +12 -3
- data/android_tests/lib/android/specs/android/helper.rb +9 -1
- data/android_tests/lib/android/specs/common/patch.rb +10 -3
- data/appium_lib.gemspec +1 -1
- data/docs/android_docs.md +249 -239
- data/docs/android_uiautomator.md +10 -0
- data/docs/ios_docs.md +258 -258
- data/docs/ios_xcuitest.md +20 -0
- data/lib/appium_lib/android/element/button.rb +32 -50
- data/lib/appium_lib/android/helper.rb +15 -17
- data/lib/appium_lib/common/version.rb +2 -2
- data/release_notes.md +109 -102
- metadata +8 -8
data/docs/ios_xcuitest.md
CHANGED
@@ -86,5 +86,25 @@ xpaths("//some xpaths")
|
|
86
86
|
- Specs by test code
|
87
87
|
- https://github.com/appium/appium-xcuitest-driver/blob/master/test/functional/basic/gesture-e2e-specs.js
|
88
88
|
|
89
|
+
### Workaround
|
90
|
+
- `mobile:` commands depends on WDA and Apple's framework and the behaviour depends on them.
|
91
|
+
- Sometimes issues occur such as "doubleTap isn't tapping #548"
|
92
|
+
- workaround for it:
|
93
|
+
- with `selenium-webdriver >= 3.4.0`
|
94
|
+
```ruby
|
95
|
+
def double_tap(element)
|
96
|
+
rect = element.rect
|
97
|
+
execute_script 'mobile: doubleTap', x: rect.x + rect.width / 2, y: rect.y + rect.height / 2
|
98
|
+
end
|
99
|
+
```
|
100
|
+
- with `selenium-webdriver < 3.4.0`
|
101
|
+
```ruby
|
102
|
+
def double_tap(element)
|
103
|
+
size = element.size
|
104
|
+
location = element.location
|
105
|
+
execute_script 'mobile: doubleTap', x: location.x + size.width / 2, y: location.y + size.height / 2
|
106
|
+
end
|
107
|
+
```
|
108
|
+
|
89
109
|
## Other actions
|
90
110
|
Basically, other actions such as `type` are compatible with `automationName = Appium`.
|
@@ -6,11 +6,6 @@ module Appium
|
|
6
6
|
|
7
7
|
private
|
8
8
|
|
9
|
-
# @private
|
10
|
-
def _button_visible_selectors_xpath
|
11
|
-
"//#{Button}|#{ImageButton}"
|
12
|
-
end
|
13
|
-
|
14
9
|
def _button_visible_selectors(opts = {})
|
15
10
|
button_index = opts.fetch :button_index, false
|
16
11
|
image_button_index = opts.fetch :image_button_index, false
|
@@ -24,26 +19,12 @@ module Appium
|
|
24
19
|
end
|
25
20
|
end
|
26
21
|
|
27
|
-
# @private
|
28
|
-
# For automationName is uiautomator2
|
29
|
-
def _button_exact_string_xpath(value)
|
30
|
-
string_visible_exact_xpath(Button, value) +
|
31
|
-
string_visible_exact_xpath(ImageButton, value).sub(/\A\/\//, '|')
|
32
|
-
end
|
33
|
-
|
34
22
|
def _button_exact_string(value)
|
35
23
|
button = string_visible_exact Button, value
|
36
24
|
image_button = string_visible_exact ImageButton, value
|
37
25
|
button + image_button
|
38
26
|
end
|
39
27
|
|
40
|
-
# @private
|
41
|
-
# For automationName is uiautomator2
|
42
|
-
def _button_contains_string_xpath(value)
|
43
|
-
string_visible_contains_xpath(Button, value) +
|
44
|
-
string_visible_contains_xpath(ImageButton, value).sub(/\A\/\//, '|')
|
45
|
-
end
|
46
|
-
|
47
28
|
def _button_contains_string(value)
|
48
29
|
button = string_visible_contains Button, value
|
49
30
|
image_button = string_visible_contains ImageButton, value
|
@@ -63,18 +44,18 @@ module Appium
|
|
63
44
|
index = value
|
64
45
|
raise "#{index} is not a valid index. Must be >= 1" if index <= 0
|
65
46
|
|
66
|
-
|
67
|
-
|
68
|
-
raise Selenium::WebDriver::Error::NoSuchElementError unless result
|
69
|
-
else
|
70
|
-
result = find_element :uiautomator, _button_visible_selectors(index: index)
|
47
|
+
unless automation_name_is_uiautomator2?
|
48
|
+
return find_element :uiautomator, _button_visible_selectors(index: index)
|
71
49
|
end
|
72
50
|
|
73
|
-
|
51
|
+
result = find_elements :uiautomator, _button_visible_selectors(index: index)
|
52
|
+
raise _no_such_element if result.empty?
|
53
|
+
return result[value - 1]
|
74
54
|
end
|
75
55
|
|
76
56
|
if automation_name_is_uiautomator2?
|
77
|
-
|
57
|
+
elements = find_elements :uiautomator, _button_contains_string(value)
|
58
|
+
raise_no_such_element_if_empty(elements)
|
78
59
|
else
|
79
60
|
find_element :uiautomator, _button_contains_string(value)
|
80
61
|
end
|
@@ -85,20 +66,16 @@ module Appium
|
|
85
66
|
# @param value [String] the value to search for
|
86
67
|
# @return [Array<Button>]
|
87
68
|
def buttons(value = false)
|
88
|
-
|
89
|
-
|
90
|
-
find_elements :xpath, _button_contains_string_xpath(value)
|
91
|
-
else
|
92
|
-
return find_elements :uiautomator, _button_visible_selectors unless value
|
93
|
-
find_elements :uiautomator, _button_contains_string(value)
|
94
|
-
end
|
69
|
+
return find_elements :uiautomator, _button_visible_selectors unless value
|
70
|
+
find_elements :uiautomator, _button_contains_string(value)
|
95
71
|
end
|
96
72
|
|
97
73
|
# Find the first button.
|
98
74
|
# @return [Button]
|
99
75
|
def first_button
|
100
76
|
if automation_name_is_uiautomator2?
|
101
|
-
|
77
|
+
elements = find_elements :uiautomator, _button_visible_selectors(button_index: 0, image_button_index: 0)
|
78
|
+
raise_no_such_element_if_empty(elements)
|
102
79
|
else
|
103
80
|
find_element :uiautomator, _button_visible_selectors(button_index: 0, image_button_index: 0)
|
104
81
|
end
|
@@ -107,18 +84,19 @@ module Appium
|
|
107
84
|
# Find the last button.
|
108
85
|
# @return [Button]
|
109
86
|
def last_button
|
87
|
+
# uiautomator index doesn't support last
|
88
|
+
# and it's 0 indexed
|
89
|
+
button_index = tags(Button).length
|
90
|
+
button_index -= 1 if button_index > 0
|
91
|
+
image_button_index = tags(ImageButton).length
|
92
|
+
image_button_index -= 1 if image_button_index > 0
|
93
|
+
|
110
94
|
if automation_name_is_uiautomator2?
|
111
|
-
|
112
|
-
|
113
|
-
|
95
|
+
elements = find_elements :uiautomator,
|
96
|
+
_button_visible_selectors(button_index: button_index,
|
97
|
+
image_button_index: image_button_index)
|
98
|
+
raise_no_such_element_if_empty(elements)
|
114
99
|
else
|
115
|
-
# uiautomator index doesn't support last
|
116
|
-
# and it's 0 indexed
|
117
|
-
button_index = tags(Button).length
|
118
|
-
button_index -= 1 if button_index > 0
|
119
|
-
image_button_index = tags(ImageButton).length
|
120
|
-
image_button_index -= 1 if image_button_index > 0
|
121
|
-
|
122
100
|
find_element :uiautomator,
|
123
101
|
_button_visible_selectors(button_index: button_index,
|
124
102
|
image_button_index: image_button_index)
|
@@ -130,7 +108,8 @@ module Appium
|
|
130
108
|
# @return [Button]
|
131
109
|
def button_exact(value)
|
132
110
|
if automation_name_is_uiautomator2?
|
133
|
-
|
111
|
+
elements = find_elements :uiautomator, _button_exact_string(value)
|
112
|
+
raise_no_such_element_if_empty(elements)
|
134
113
|
else
|
135
114
|
find_element :uiautomator, _button_exact_string(value)
|
136
115
|
end
|
@@ -140,11 +119,14 @@ module Appium
|
|
140
119
|
# @param value [String] the value to match exactly
|
141
120
|
# @return [Array<Button>]
|
142
121
|
def buttons_exact(value)
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
122
|
+
find_elements :uiautomator, _button_exact_string(value)
|
123
|
+
end
|
124
|
+
|
125
|
+
private
|
126
|
+
|
127
|
+
def raise_no_such_element_if_empty(elements)
|
128
|
+
raise _no_such_element if elements.empty?
|
129
|
+
elements.first
|
148
130
|
end
|
149
131
|
end # module Android
|
150
132
|
end # module Appium
|
@@ -281,6 +281,7 @@ module Appium
|
|
281
281
|
# Returns a string that matches the first element that contains value
|
282
282
|
# For automationName is uiautomator2
|
283
283
|
# example: string_visible_contains_xpath 'UIATextField', 'sign in'
|
284
|
+
# note for XPath: https://github.com/appium/ruby_lib/pull/561
|
284
285
|
#
|
285
286
|
# @param class_name [String] the class name for the element
|
286
287
|
# @param value [String] the value to search for
|
@@ -300,6 +301,7 @@ module Appium
|
|
300
301
|
# Returns a string that matches the first element that contains value
|
301
302
|
# For automationName is Appium
|
302
303
|
# example: string_visible_contains 'UIATextField', 'sign in'
|
304
|
+
# note for XPath: https://github.com/appium/ruby_lib/pull/561
|
303
305
|
#
|
304
306
|
# @param class_name [String] the class name for the element
|
305
307
|
# @param value [String] the value to search for
|
@@ -319,27 +321,25 @@ module Appium
|
|
319
321
|
end
|
320
322
|
|
321
323
|
# Find the first element that contains value
|
322
|
-
# @param
|
324
|
+
# @param class_name [String] the class name for the element
|
323
325
|
# @param value [String] the value to search for
|
324
326
|
# @return [Element]
|
325
|
-
def complex_find_contains(
|
327
|
+
def complex_find_contains(class_name, value)
|
326
328
|
if automation_name_is_uiautomator2?
|
327
|
-
|
329
|
+
elements = find_elements :uiautomator, string_visible_contains(class_name, value)
|
330
|
+
raise _no_such_element if elements.empty?
|
331
|
+
elements.first
|
328
332
|
else
|
329
|
-
find_element :uiautomator, string_visible_contains(
|
333
|
+
find_element :uiautomator, string_visible_contains(class_name, value)
|
330
334
|
end
|
331
335
|
end
|
332
336
|
|
333
337
|
# Find all elements containing value
|
334
|
-
# @param
|
338
|
+
# @param class_name [String] the class name for the element
|
335
339
|
# @param value [String] the value to search for
|
336
340
|
# @return [Array<Element>]
|
337
|
-
def complex_finds_contains(
|
338
|
-
|
339
|
-
find_elements :xpath, string_visible_contains_xpath(element, value)
|
340
|
-
else
|
341
|
-
find_elements :uiautomator, string_visible_contains(element, value)
|
342
|
-
end
|
341
|
+
def complex_finds_contains(class_name, value)
|
342
|
+
find_elements :uiautomator, string_visible_contains(class_name, value)
|
343
343
|
end
|
344
344
|
|
345
345
|
# @private
|
@@ -384,7 +384,9 @@ module Appium
|
|
384
384
|
# @return [Element]
|
385
385
|
def complex_find_exact(class_name, value)
|
386
386
|
if automation_name_is_uiautomator2?
|
387
|
-
|
387
|
+
elements = find_elements :uiautomator, string_visible_exact(class_name, value)
|
388
|
+
raise _no_such_element if elements.empty?
|
389
|
+
elements.first
|
388
390
|
else
|
389
391
|
find_element :uiautomator, string_visible_exact(class_name, value)
|
390
392
|
end
|
@@ -395,11 +397,7 @@ module Appium
|
|
395
397
|
# @param value [String] the value to search for
|
396
398
|
# @return [Element]
|
397
399
|
def complex_finds_exact(class_name, value)
|
398
|
-
|
399
|
-
find_elements :xpath, string_visible_exact_xpath(class_name, value)
|
400
|
-
else
|
401
|
-
find_elements :uiautomator, string_visible_exact(class_name, value)
|
402
|
-
end
|
400
|
+
find_elements :uiautomator, string_visible_exact(class_name, value)
|
403
401
|
end
|
404
402
|
|
405
403
|
# Returns XML string for the current page
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Appium
|
2
2
|
# Version and Date are defined on the 'Appium' module, not 'Appium::Common'
|
3
|
-
VERSION = '9.4.
|
4
|
-
DATE = '2017-
|
3
|
+
VERSION = '9.4.3'.freeze unless defined? ::Appium::VERSION
|
4
|
+
DATE = '2017-05-03'.freeze unless defined? ::Appium::DATE
|
5
5
|
end
|
data/release_notes.md
CHANGED
@@ -1,174 +1,181 @@
|
|
1
|
+
#### v9.4.2 2017-04-21
|
2
|
+
|
3
|
+
- [0cd41ef](https://github.com/appium/ruby_lib/commit/0cd41ef58b6abf8444fcb95db59aebb2c6c2a890) [Release 9 4 2 (#554)](https://github.com/appium/ruby_lib/issues/554)
|
4
|
+
- [d01ebd2](https://github.com/appium/ruby_lib/commit/d01ebd28d350eab752dcc10f6f9675610cbb596c) [fix drag_from_to_for_duration (#553)](https://github.com/appium/ruby_lib/issues/553)
|
5
|
+
- [4f5a474](https://github.com/appium/ruby_lib/commit/4f5a4743b0acebbdefe6091a49cd86e1e3aa7eeb) [add offset (#551)](https://github.com/appium/ruby_lib/issues/551)
|
6
|
+
|
7
|
+
|
1
8
|
#### v9.4.1 2017-04-19
|
2
9
|
|
3
|
-
- [491a142](https://github.com/appium/ruby_lib/commit/491a142942cc0eb8addfb15e2bbd805d260cebc0) Release 9 4 1 (#550)
|
4
|
-
- [d721297](https://github.com/appium/ruby_lib/commit/d721297a634cebc0d22f26a132345126036c71d6) separate find_element/s for uiautomator and xpath (#547)
|
10
|
+
- [491a142](https://github.com/appium/ruby_lib/commit/491a142942cc0eb8addfb15e2bbd805d260cebc0) [Release 9 4 1 (#550)](https://github.com/appium/ruby_lib/issues/550)
|
11
|
+
- [d721297](https://github.com/appium/ruby_lib/commit/d721297a634cebc0d22f26a132345126036c71d6) [separate find_element/s for uiautomator and xpath (#547)](https://github.com/appium/ruby_lib/issues/547)
|
5
12
|
|
6
13
|
|
7
14
|
#### v9.4.0 2017-04-17
|
8
15
|
|
9
|
-
- [9492690](https://github.com/appium/ruby_lib/commit/9492690f80efaab79ce165e16dd335fca9717c4a) Release 9 4 0 (#545)
|
10
|
-
- [2ea94c3](https://github.com/appium/ruby_lib/commit/2ea94c3933f1ecd1362c33f306348236facefc37) add mobile gesture (#542)
|
11
|
-
- [1c7dd0f](https://github.com/appium/ruby_lib/commit/1c7dd0ff844265e76b3f2e15a0e6b3651005518f) use xpath instead of uiselectors (#544)
|
12
|
-
- [5841a39](https://github.com/appium/ruby_lib/commit/5841a39d60b0986f1a1dd786b910bfbd6223d124) add mobile gesture for XCUITest (#537)
|
16
|
+
- [9492690](https://github.com/appium/ruby_lib/commit/9492690f80efaab79ce165e16dd335fca9717c4a) [Release 9 4 0 (#545)](https://github.com/appium/ruby_lib/issues/545)
|
17
|
+
- [2ea94c3](https://github.com/appium/ruby_lib/commit/2ea94c3933f1ecd1362c33f306348236facefc37) [add mobile gesture (#542)](https://github.com/appium/ruby_lib/issues/542)
|
18
|
+
- [1c7dd0f](https://github.com/appium/ruby_lib/commit/1c7dd0ff844265e76b3f2e15a0e6b3651005518f) [use xpath instead of uiselectors (#544)](https://github.com/appium/ruby_lib/issues/544)
|
19
|
+
- [5841a39](https://github.com/appium/ruby_lib/commit/5841a39d60b0986f1a1dd786b910bfbd6223d124) [add mobile gesture for XCUITest (#537)](https://github.com/appium/ruby_lib/issues/537)
|
13
20
|
|
14
21
|
|
15
22
|
#### v9.3.8 2017-04-13
|
16
23
|
|
17
|
-
- [7a7cf44](https://github.com/appium/ruby_lib/commit/7a7cf44c3cb11a90142285b8e8d731dc452b89eb) Release 9 3 8 (#540)
|
18
|
-
- [5e67b88](https://github.com/appium/ruby_lib/commit/5e67b8813950148661bc4491811a696edeffc63c) allow using TestObject server (#538)
|
19
|
-
- [9fdf89f](https://github.com/appium/ruby_lib/commit/9fdf89f9c3993730aabf1b8e25f03a773e565d98) add link to mobile gesture for XCUITets (#536)
|
24
|
+
- [7a7cf44](https://github.com/appium/ruby_lib/commit/7a7cf44c3cb11a90142285b8e8d731dc452b89eb) [Release 9 3 8 (#540)](https://github.com/appium/ruby_lib/issues/540)
|
25
|
+
- [5e67b88](https://github.com/appium/ruby_lib/commit/5e67b8813950148661bc4491811a696edeffc63c) [allow using TestObject server (#538)](https://github.com/appium/ruby_lib/issues/538)
|
26
|
+
- [9fdf89f](https://github.com/appium/ruby_lib/commit/9fdf89f9c3993730aabf1b8e25f03a773e565d98) [add link to mobile gesture for XCUITets (#536)](https://github.com/appium/ruby_lib/issues/536)
|
20
27
|
|
21
28
|
|
22
29
|
#### v9.3.7 2017-04-09
|
23
30
|
|
24
|
-
- [8daf6f7](https://github.com/appium/ruby_lib/commit/8daf6f773c9b8acd7a89e2a9225fd834de5b4e2e) Release 9 3 7 (#535)
|
25
|
-
- [893c714](https://github.com/appium/ruby_lib/commit/893c714f4b60985753950f74e9e4b3bfb5f066eb) Remove appium suffix from find element (#532)
|
26
|
-
- [61ee15c](https://github.com/appium/ruby_lib/commit/61ee15c58ec536db1c32f8e278f8214148c96552) Update docs for find_element/s (#531)
|
27
|
-
- [17d17e6](https://github.com/appium/ruby_lib/commit/17d17e65a52cc22d093f913084673cb3a33b450c) fix markup (#526)
|
28
|
-
- [9de862c](https://github.com/appium/ruby_lib/commit/9de862ca6440e8a2e864b7b342725ac7699c096b) fix the android doc markup (#525)
|
31
|
+
- [8daf6f7](https://github.com/appium/ruby_lib/commit/8daf6f773c9b8acd7a89e2a9225fd834de5b4e2e) [Release 9 3 7 (#535)](https://github.com/appium/ruby_lib/issues/535)
|
32
|
+
- [893c714](https://github.com/appium/ruby_lib/commit/893c714f4b60985753950f74e9e4b3bfb5f066eb) [Remove appium suffix from find element (#532)](https://github.com/appium/ruby_lib/issues/532)
|
33
|
+
- [61ee15c](https://github.com/appium/ruby_lib/commit/61ee15c58ec536db1c32f8e278f8214148c96552) [Update docs for find_element/s (#531)](https://github.com/appium/ruby_lib/issues/531)
|
34
|
+
- [17d17e6](https://github.com/appium/ruby_lib/commit/17d17e65a52cc22d093f913084673cb3a33b450c) [fix markup (#526)](https://github.com/appium/ruby_lib/issues/526)
|
35
|
+
- [9de862c](https://github.com/appium/ruby_lib/commit/9de862ca6440e8a2e864b7b342725ac7699c096b) [fix the android doc markup (#525)](https://github.com/appium/ruby_lib/issues/525)
|
29
36
|
|
30
37
|
|
31
38
|
#### v9.3.6 2017-03-31
|
32
39
|
|
33
|
-
- [0f1e3aa](https://github.com/appium/ruby_lib/commit/0f1e3aa48ce2d561af0a5897ab62017306009d8b) Release 9 3 6 (#523)
|
34
|
-
- [4ae0815](https://github.com/appium/ruby_lib/commit/4ae081549cf1aad89c6d304fc8a8b9499db96160) Add toggle touch id enrollment (#521)
|
40
|
+
- [0f1e3aa](https://github.com/appium/ruby_lib/commit/0f1e3aa48ce2d561af0a5897ab62017306009d8b) [Release 9 3 6 (#523)](https://github.com/appium/ruby_lib/issues/523)
|
41
|
+
- [4ae0815](https://github.com/appium/ruby_lib/commit/4ae081549cf1aad89c6d304fc8a8b9499db96160) [Add toggle touch id enrollment (#521)](https://github.com/appium/ruby_lib/issues/521)
|
35
42
|
|
36
43
|
|
37
44
|
#### v9.3.5 2017-03-26
|
38
45
|
|
39
|
-
- [c652bb3](https://github.com/appium/ruby_lib/commit/c652bb3332016a3c8ba7502e31477a330ab1c1ab) Release 9 3 5 (#520)
|
40
|
-
- [c8ae26d](https://github.com/appium/ruby_lib/commit/c8ae26d6c9c400c5f40c3d1b620a3a5ba09c5932) Add some android commands (#517)
|
41
|
-
- [e0db50e](https://github.com/appium/ruby_lib/commit/e0db50e5635dc359620eec9f79609f55af6ba529) Add class chain (#515)
|
42
|
-
- [43ea919](https://github.com/appium/ruby_lib/commit/43ea919e4830477751f98aa6cf2475a54bcecb8e) [WIP]add scrollable index param into scroll_uiselector (#507)
|
43
|
-
- [80f8071](https://github.com/appium/ruby_lib/commit/80f80715dcee6de968700ece40894222af41579a) add clearing actions after calling perform (#512)
|
46
|
+
- [c652bb3](https://github.com/appium/ruby_lib/commit/c652bb3332016a3c8ba7502e31477a330ab1c1ab) [Release 9 3 5 (#520)](https://github.com/appium/ruby_lib/issues/520)
|
47
|
+
- [c8ae26d](https://github.com/appium/ruby_lib/commit/c8ae26d6c9c400c5f40c3d1b620a3a5ba09c5932) [Add some android commands (#517)](https://github.com/appium/ruby_lib/issues/517)
|
48
|
+
- [e0db50e](https://github.com/appium/ruby_lib/commit/e0db50e5635dc359620eec9f79609f55af6ba529) [Add class chain (#515)](https://github.com/appium/ruby_lib/issues/515)
|
49
|
+
- [43ea919](https://github.com/appium/ruby_lib/commit/43ea919e4830477751f98aa6cf2475a54bcecb8e) [[WIP]add scrollable index param into scroll_uiselector (#507)](https://github.com/appium/ruby_lib/issues/507)
|
50
|
+
- [80f8071](https://github.com/appium/ruby_lib/commit/80f80715dcee6de968700ece40894222af41579a) [add clearing actions after calling perform (#512)](https://github.com/appium/ruby_lib/issues/512)
|
44
51
|
|
45
52
|
|
46
53
|
#### v9.3.4 2017-03-16
|
47
54
|
|
48
|
-
- [2b01065](https://github.com/appium/ruby_lib/commit/2b01065d0b2c2287ed9568cb23de5e459082ef62) Release 9 3 4 (#509)
|
49
|
-
- [0abf62f](https://github.com/appium/ruby_lib/commit/0abf62f0fa99d1ce0841a98e86a6ca334a143f0e) add doc for uiautomator (#508)
|
50
|
-
- [0199159](https://github.com/appium/ruby_lib/commit/0199159b6f0193884ebcffbfa460b3403859e537) Search with predicate (#504)
|
51
|
-
- [dbd8762](https://github.com/appium/ruby_lib/commit/dbd87620b771e7448e9826181b0ae595701ccaa2) Update deactive app for xcuitest (#502)
|
52
|
-
- [e06b25e](https://github.com/appium/ruby_lib/commit/e06b25ed1df5ed1a67fcf1a59767cc42ddcdb0d0) add a test for predicate (#499)
|
53
|
-
- [447f13c](https://github.com/appium/ruby_lib/commit/447f13cd799652d203bed4fc557b3c251ef2aa2c) Use awesome print 1.7 (#498)
|
54
|
-
- [a68cc5f](https://github.com/appium/ruby_lib/commit/a68cc5fc38b64d1d41945024a808df9af90828d7) remove workaround for rainbow (#497)
|
55
|
+
- [2b01065](https://github.com/appium/ruby_lib/commit/2b01065d0b2c2287ed9568cb23de5e459082ef62) [Release 9 3 4 (#509)](https://github.com/appium/ruby_lib/issues/509)
|
56
|
+
- [0abf62f](https://github.com/appium/ruby_lib/commit/0abf62f0fa99d1ce0841a98e86a6ca334a143f0e) [add doc for uiautomator (#508)](https://github.com/appium/ruby_lib/issues/508)
|
57
|
+
- [0199159](https://github.com/appium/ruby_lib/commit/0199159b6f0193884ebcffbfa460b3403859e537) [Search with predicate (#504)](https://github.com/appium/ruby_lib/issues/504)
|
58
|
+
- [dbd8762](https://github.com/appium/ruby_lib/commit/dbd87620b771e7448e9826181b0ae595701ccaa2) [Update deactive app for xcuitest (#502)](https://github.com/appium/ruby_lib/issues/502)
|
59
|
+
- [e06b25e](https://github.com/appium/ruby_lib/commit/e06b25ed1df5ed1a67fcf1a59767cc42ddcdb0d0) [add a test for predicate (#499)](https://github.com/appium/ruby_lib/issues/499)
|
60
|
+
- [447f13c](https://github.com/appium/ruby_lib/commit/447f13cd799652d203bed4fc557b3c251ef2aa2c) [Use awesome print 1.7 (#498)](https://github.com/appium/ruby_lib/issues/498)
|
61
|
+
- [a68cc5f](https://github.com/appium/ruby_lib/commit/a68cc5fc38b64d1d41945024a808df9af90828d7) [remove workaround for rainbow (#497)](https://github.com/appium/ruby_lib/issues/497)
|
55
62
|
|
56
63
|
|
57
64
|
#### v9.3.3 2017-02-18
|
58
65
|
|
59
|
-
- [422a468](https://github.com/appium/ruby_lib/commit/422a4683f10fc99d3731985d532b71e1fe80b4e6) Release 9 3 3 (#494)
|
60
|
-
- [c09cf1e](https://github.com/appium/ruby_lib/commit/c09cf1efb33b276d6faf179b1344435df5dc7d16) add tags_include and tags_exact to find value (#490)
|
66
|
+
- [422a468](https://github.com/appium/ruby_lib/commit/422a4683f10fc99d3731985d532b71e1fe80b4e6) [Release 9 3 3 (#494)](https://github.com/appium/ruby_lib/issues/494)
|
67
|
+
- [c09cf1e](https://github.com/appium/ruby_lib/commit/c09cf1efb33b276d6faf179b1344435df5dc7d16) [add tags_include and tags_exact to find value (#490)](https://github.com/appium/ruby_lib/issues/490)
|
61
68
|
|
62
69
|
|
63
70
|
#### v9.3.2 2017-02-11
|
64
71
|
|
65
|
-
- [39fd66f](https://github.com/appium/ruby_lib/commit/39fd66f354b6fdd6bba7ae6f5e28f86dc301cdf9) Release 9 3 2 (#487)
|
66
|
-
- [7edcd09](https://github.com/appium/ruby_lib/commit/7edcd098be56c0ea72c4d33f91600009df1c1b88) Update changelog and add tests (#486)
|
67
|
-
- [5731059](https://github.com/appium/ruby_lib/commit/5731059766542b5a7615fff20644db42177586e4) allow SAUCE_ENDPOINT env var to override sauce server url/path (#485)
|
72
|
+
- [39fd66f](https://github.com/appium/ruby_lib/commit/39fd66f354b6fdd6bba7ae6f5e28f86dc301cdf9) [Release 9 3 2 (#487)](https://github.com/appium/ruby_lib/issues/487)
|
73
|
+
- [7edcd09](https://github.com/appium/ruby_lib/commit/7edcd098be56c0ea72c4d33f91600009df1c1b88) [Update changelog and add tests (#486)](https://github.com/appium/ruby_lib/issues/486)
|
74
|
+
- [5731059](https://github.com/appium/ruby_lib/commit/5731059766542b5a7615fff20644db42177586e4) [allow SAUCE_ENDPOINT env var to override sauce server url/path (#485)](https://github.com/appium/ruby_lib/issues/485)
|
68
75
|
|
69
76
|
|
70
77
|
#### v9.3.1 2017-02-05
|
71
78
|
|
72
|
-
- [fa555d1](https://github.com/appium/ruby_lib/commit/fa555d10e7a5c48e4976fbbf2e9c061a5948d6bd) Release 9 3 1 (#484)
|
73
|
-
- [c3bc3be](https://github.com/appium/ruby_lib/commit/c3bc3bed375c76e5a7c5fd76bb1225adad54656c) add changelog (#483)
|
74
|
-
- [6849567](https://github.com/appium/ruby_lib/commit/68495675f35856bbf4179176f23a3c05f4cb1592) add getting performance command (#480)
|
75
|
-
- [0b52c16](https://github.com/appium/ruby_lib/commit/0b52c16b6bf0591b500b1f6e1ebc04c0a7032cc6) Fix missed var rename (#481)
|
76
|
-
- [54a8979](https://github.com/appium/ruby_lib/commit/54a897908c066905fd99b5eee7d539a757e987ac) add android tests for capabilities (#477)
|
77
|
-
- [5ba85ec](https://github.com/appium/ruby_lib/commit/5ba85ec455378505dd953002ae5aca8bbd980a1f) add documents for toml (#478)
|
78
|
-
- [bab7df7](https://github.com/appium/ruby_lib/commit/bab7df7f097fef9e848f33a60d70d0e7e018c25c) Clarify disabling Sauce Labs. (#471)
|
79
|
-
- [cf0bda0](https://github.com/appium/ruby_lib/commit/cf0bda06c392274949843888272a762b9ed01a47) remove outdated methods (#475)
|
79
|
+
- [fa555d1](https://github.com/appium/ruby_lib/commit/fa555d10e7a5c48e4976fbbf2e9c061a5948d6bd) [Release 9 3 1 (#484)](https://github.com/appium/ruby_lib/issues/484)
|
80
|
+
- [c3bc3be](https://github.com/appium/ruby_lib/commit/c3bc3bed375c76e5a7c5fd76bb1225adad54656c) [add changelog (#483)](https://github.com/appium/ruby_lib/issues/483)
|
81
|
+
- [6849567](https://github.com/appium/ruby_lib/commit/68495675f35856bbf4179176f23a3c05f4cb1592) [add getting performance command (#480)](https://github.com/appium/ruby_lib/issues/480)
|
82
|
+
- [0b52c16](https://github.com/appium/ruby_lib/commit/0b52c16b6bf0591b500b1f6e1ebc04c0a7032cc6) [Fix missed var rename (#481)](https://github.com/appium/ruby_lib/issues/481)
|
83
|
+
- [54a8979](https://github.com/appium/ruby_lib/commit/54a897908c066905fd99b5eee7d539a757e987ac) [add android tests for capabilities (#477)](https://github.com/appium/ruby_lib/issues/477)
|
84
|
+
- [5ba85ec](https://github.com/appium/ruby_lib/commit/5ba85ec455378505dd953002ae5aca8bbd980a1f) [add documents for toml (#478)](https://github.com/appium/ruby_lib/issues/478)
|
85
|
+
- [bab7df7](https://github.com/appium/ruby_lib/commit/bab7df7f097fef9e848f33a60d70d0e7e018c25c) [Clarify disabling Sauce Labs. (#471)](https://github.com/appium/ruby_lib/issues/471)
|
86
|
+
- [cf0bda0](https://github.com/appium/ruby_lib/commit/cf0bda06c392274949843888272a762b9ed01a47) [remove outdated methods (#475)](https://github.com/appium/ruby_lib/issues/475)
|
80
87
|
|
81
88
|
|
82
89
|
#### v9.3.0 2017-01-22
|
83
90
|
|
84
|
-
- [a1c2872](https://github.com/appium/ruby_lib/commit/a1c287296c9eace08ef19449998fba7229b65697) Release 9 3 0 (#474)
|
85
|
-
- [23d937a](https://github.com/appium/ruby_lib/commit/23d937a60da55c2d95ccbbda07ad23bda1b53a7b) update changelogs for v9.3.0 (#472)
|
86
|
-
- [34803ef](https://github.com/appium/ruby_lib/commit/34803ef6b7b94df9ef4e147ba8fec5c1d2cfaada) arrange docs (#470)
|
87
|
-
- [c1106aa](https://github.com/appium/ruby_lib/commit/c1106aaa6f48a4ed22dc1a7e55c9c4119cdef15c) fix returning only visible elements (#465)
|
88
|
-
- [0104a87](https://github.com/appium/ruby_lib/commit/0104a87fad933598bb2b8ac1174319857494ba21) add capability to be able to set default timeout/interval for wait/wait_true (#468)
|
89
|
-
- [1372e64](https://github.com/appium/ruby_lib/commit/1372e6453536eb64829825b5bf405ad0f11a9a46) fix typo (#467)
|
90
|
-
- [a5ddd4a](https://github.com/appium/ruby_lib/commit/a5ddd4aa1d5f009b9024ee5aa5434805ba73895c) fix swipe, pinch, zoom (#466)
|
91
|
-
- [a1c2e9e](https://github.com/appium/ruby_lib/commit/a1c2e9e815e9f85c929da857e26f419629d760df) fix appium server's version check (#464)
|
91
|
+
- [a1c2872](https://github.com/appium/ruby_lib/commit/a1c287296c9eace08ef19449998fba7229b65697) [Release 9 3 0 (#474)](https://github.com/appium/ruby_lib/issues/474)
|
92
|
+
- [23d937a](https://github.com/appium/ruby_lib/commit/23d937a60da55c2d95ccbbda07ad23bda1b53a7b) [update changelogs for v9.3.0 (#472)](https://github.com/appium/ruby_lib/issues/472)
|
93
|
+
- [34803ef](https://github.com/appium/ruby_lib/commit/34803ef6b7b94df9ef4e147ba8fec5c1d2cfaada) [arrange docs (#470)](https://github.com/appium/ruby_lib/issues/470)
|
94
|
+
- [c1106aa](https://github.com/appium/ruby_lib/commit/c1106aaa6f48a4ed22dc1a7e55c9c4119cdef15c) [fix returning only visible elements (#465)](https://github.com/appium/ruby_lib/issues/465)
|
95
|
+
- [0104a87](https://github.com/appium/ruby_lib/commit/0104a87fad933598bb2b8ac1174319857494ba21) [add capability to be able to set default timeout/interval for wait/wait_true (#468)](https://github.com/appium/ruby_lib/issues/468)
|
96
|
+
- [1372e64](https://github.com/appium/ruby_lib/commit/1372e6453536eb64829825b5bf405ad0f11a9a46) [fix typo (#467)](https://github.com/appium/ruby_lib/issues/467)
|
97
|
+
- [a5ddd4a](https://github.com/appium/ruby_lib/commit/a5ddd4aa1d5f009b9024ee5aa5434805ba73895c) [fix swipe, pinch, zoom (#466)](https://github.com/appium/ruby_lib/issues/466)
|
98
|
+
- [a1c2e9e](https://github.com/appium/ruby_lib/commit/a1c2e9e815e9f85c929da857e26f419629d760df) [fix appium server's version check (#464)](https://github.com/appium/ruby_lib/issues/464)
|
92
99
|
|
93
100
|
|
94
101
|
#### v9.2.0 2017-01-09
|
95
102
|
|
96
|
-
- [958ae3e](https://github.com/appium/ruby_lib/commit/958ae3e2fc84b78191baf22e967c8a2fb7eded22) Release 9 2 0 (#460)
|
97
|
-
- [292acdf](https://github.com/appium/ruby_lib/commit/292acdf323e7725ef6cc09f2c56d94a8f54ec801) update changelog for 9.2.0 (#458)
|
98
|
-
- [1457728](https://github.com/appium/ruby_lib/commit/1457728872214746d9792d916a262a5f996e78ef) Remove last waits (#456)
|
99
|
-
- [b10cf83](https://github.com/appium/ruby_lib/commit/b10cf837edafea96e2b2d13e7adf6a87dd448723) add examples for predicate (#455)
|
100
|
-
- [d050100](https://github.com/appium/ruby_lib/commit/d050100c0f461c639c417f64ec12d569c412bfb6) Add some documents (#454)
|
101
|
-
- [6ee434f](https://github.com/appium/ruby_lib/commit/6ee434f9dbabb7bdb775692382972731c39a71c9) set auomation name from server if client side is nil (#451)
|
102
|
-
- [6abb146](https://github.com/appium/ruby_lib/commit/6abb14627fc454684ad4766d9dd95dfd4b52d564) add link to locatorStrategies (#449)
|
103
|
-
- [74dc747](https://github.com/appium/ruby_lib/commit/74dc747f56fe78f2bd883c1070d2ea25af0fa382) add changelog (#448)
|
104
|
-
- [4e8a449](https://github.com/appium/ruby_lib/commit/4e8a449bf2ff5a3e6f778389b336ecd1a712c25f) arrange a bit (#446)
|
105
|
-
- [4efeefa](https://github.com/appium/ruby_lib/commit/4efeefa7e3cb751dcc11280e26169e4ba57b3065) Release 9 1 3 (#445)
|
103
|
+
- [958ae3e](https://github.com/appium/ruby_lib/commit/958ae3e2fc84b78191baf22e967c8a2fb7eded22) [Release 9 2 0 (#460)](https://github.com/appium/ruby_lib/issues/460)
|
104
|
+
- [292acdf](https://github.com/appium/ruby_lib/commit/292acdf323e7725ef6cc09f2c56d94a8f54ec801) [update changelog for 9.2.0 (#458)](https://github.com/appium/ruby_lib/issues/458)
|
105
|
+
- [1457728](https://github.com/appium/ruby_lib/commit/1457728872214746d9792d916a262a5f996e78ef) [Remove last waits (#456)](https://github.com/appium/ruby_lib/issues/456)
|
106
|
+
- [b10cf83](https://github.com/appium/ruby_lib/commit/b10cf837edafea96e2b2d13e7adf6a87dd448723) [add examples for predicate (#455)](https://github.com/appium/ruby_lib/issues/455)
|
107
|
+
- [d050100](https://github.com/appium/ruby_lib/commit/d050100c0f461c639c417f64ec12d569c412bfb6) [Add some documents (#454)](https://github.com/appium/ruby_lib/issues/454)
|
108
|
+
- [6ee434f](https://github.com/appium/ruby_lib/commit/6ee434f9dbabb7bdb775692382972731c39a71c9) [set auomation name from server if client side is nil (#451)](https://github.com/appium/ruby_lib/issues/451)
|
109
|
+
- [6abb146](https://github.com/appium/ruby_lib/commit/6abb14627fc454684ad4766d9dd95dfd4b52d564) [add link to locatorStrategies (#449)](https://github.com/appium/ruby_lib/issues/449)
|
110
|
+
- [74dc747](https://github.com/appium/ruby_lib/commit/74dc747f56fe78f2bd883c1070d2ea25af0fa382) [add changelog (#448)](https://github.com/appium/ruby_lib/issues/448)
|
111
|
+
- [4e8a449](https://github.com/appium/ruby_lib/commit/4e8a449bf2ff5a3e6f778389b336ecd1a712c25f) [arrange a bit (#446)](https://github.com/appium/ruby_lib/issues/446)
|
112
|
+
- [4efeefa](https://github.com/appium/ruby_lib/commit/4efeefa7e3cb751dcc11280e26169e4ba57b3065) [Release 9 1 3 (#445)](https://github.com/appium/ruby_lib/issues/445)
|
106
113
|
- [ba2fbdc](https://github.com/appium/ruby_lib/commit/ba2fbdcb206609259134fc09eac7940c21cc2c13) Release 9.1.3
|
107
114
|
|
108
115
|
|
109
116
|
#### v9.1.3 2017-01-04
|
110
117
|
|
111
118
|
- [ba2fbdc](https://github.com/appium/ruby_lib/commit/ba2fbdcb206609259134fc09eac7940c21cc2c13) Release 9.1.3
|
112
|
-
- [f0c15c5](https://github.com/appium/ruby_lib/commit/f0c15c5b0211b40a8412583c5180a19dc4b56047) update documentations in xcuitest (#444)
|
113
|
-
- [67114d1](https://github.com/appium/ruby_lib/commit/67114d1c16f4289c9aa4e7bb02fcc05a08cc3575) Improve performance for button/s and text/s (#442)
|
114
|
-
- [2d1f30e](https://github.com/appium/ruby_lib/commit/2d1f30e9b4d89dc51bb546d535c0bd3f14687394) simplify a bit and move tests to suitable file (#441)
|
115
|
-
- [1efed4c](https://github.com/appium/ruby_lib/commit/1efed4cbf45b889ca9e64f91346e786a89ba3c42) add documentation for alternative long_press method (#440)
|
116
|
-
- [71e629f](https://github.com/appium/ruby_lib/commit/71e629f34065b6a6e39e9bc18bcf4eb0576be0cb) update small changes (#439)
|
117
|
-
- [cec023c](https://github.com/appium/ruby_lib/commit/cec023cc9388afe5283c7637622f369a9b891b1e) Use open timeout and read timeout and require selenium-webdriver3.0.4+ (#437)
|
118
|
-
- [ffa78a6](https://github.com/appium/ruby_lib/commit/ffa78a64b1dd68fa24c80779eff0a9c2ab685c19) Release 9 1 2 (#434)
|
119
|
+
- [f0c15c5](https://github.com/appium/ruby_lib/commit/f0c15c5b0211b40a8412583c5180a19dc4b56047) [update documentations in xcuitest (#444)](https://github.com/appium/ruby_lib/issues/444)
|
120
|
+
- [67114d1](https://github.com/appium/ruby_lib/commit/67114d1c16f4289c9aa4e7bb02fcc05a08cc3575) [Improve performance for button/s and text/s (#442)](https://github.com/appium/ruby_lib/issues/442)
|
121
|
+
- [2d1f30e](https://github.com/appium/ruby_lib/commit/2d1f30e9b4d89dc51bb546d535c0bd3f14687394) [simplify a bit and move tests to suitable file (#441)](https://github.com/appium/ruby_lib/issues/441)
|
122
|
+
- [1efed4c](https://github.com/appium/ruby_lib/commit/1efed4cbf45b889ca9e64f91346e786a89ba3c42) [add documentation for alternative long_press method (#440)](https://github.com/appium/ruby_lib/issues/440)
|
123
|
+
- [71e629f](https://github.com/appium/ruby_lib/commit/71e629f34065b6a6e39e9bc18bcf4eb0576be0cb) [update small changes (#439)](https://github.com/appium/ruby_lib/issues/439)
|
124
|
+
- [cec023c](https://github.com/appium/ruby_lib/commit/cec023cc9388afe5283c7637622f369a9b891b1e) [Use open timeout and read timeout and require selenium-webdriver3.0.4+ (#437)](https://github.com/appium/ruby_lib/issues/437)
|
125
|
+
- [ffa78a6](https://github.com/appium/ruby_lib/commit/ffa78a64b1dd68fa24c80779eff0a9c2ab685c19) [Release 9 1 2 (#434)](https://github.com/appium/ruby_lib/issues/434)
|
119
126
|
- [22401b0](https://github.com/appium/ruby_lib/commit/22401b065f2317e82d37b5188ad9c18c701b0a41) Release 9.1.2
|
120
127
|
|
121
128
|
|
122
129
|
#### v9.1.2 2016-12-25
|
123
130
|
|
124
131
|
- [22401b0](https://github.com/appium/ruby_lib/commit/22401b065f2317e82d37b5188ad9c18c701b0a41) Release 9.1.2
|
125
|
-
- [ab3ba8e](https://github.com/appium/ruby_lib/commit/ab3ba8e0fd9e6867b63c5cd0a3f929aca8fc236b) Fix set immediate value (#432)
|
126
|
-
- [75acc43](https://github.com/appium/ruby_lib/commit/75acc4313fffca87c3c9c54214175a9981c0d540) disable lint unified integer (#431)
|
127
|
-
- [baf5f3c](https://github.com/appium/ruby_lib/commit/baf5f3c7bc3cf51b5f38878f40d88563546dfc10) update tests for finds_exact (#429)
|
128
|
-
- [42df79b](https://github.com/appium/ruby_lib/commit/42df79b4cd0b5a36f52628f0acdeb688c5170c0c) fix identicalConditionalBranches (#428)
|
129
|
-
- [2a91a6d](https://github.com/appium/ruby_lib/commit/2a91a6dcd50097101e212b1ed9fc64a470dd95da) add appium_client_version (#421)
|
130
|
-
- [7c39087](https://github.com/appium/ruby_lib/commit/7c39087676071a4cf27d97fc309e13e968dfb21c) fix rubocop associated with block call (#422)
|
131
|
-
- [1979cd8](https://github.com/appium/ruby_lib/commit/1979cd824947d1182fb99ff0f00dbfff165c0aab) Release 9 1 1 (#427)
|
132
|
+
- [ab3ba8e](https://github.com/appium/ruby_lib/commit/ab3ba8e0fd9e6867b63c5cd0a3f929aca8fc236b) [Fix set immediate value (#432)](https://github.com/appium/ruby_lib/issues/432)
|
133
|
+
- [75acc43](https://github.com/appium/ruby_lib/commit/75acc4313fffca87c3c9c54214175a9981c0d540) [disable lint unified integer (#431)](https://github.com/appium/ruby_lib/issues/431)
|
134
|
+
- [baf5f3c](https://github.com/appium/ruby_lib/commit/baf5f3c7bc3cf51b5f38878f40d88563546dfc10) [update tests for finds_exact (#429)](https://github.com/appium/ruby_lib/issues/429)
|
135
|
+
- [42df79b](https://github.com/appium/ruby_lib/commit/42df79b4cd0b5a36f52628f0acdeb688c5170c0c) [fix identicalConditionalBranches (#428)](https://github.com/appium/ruby_lib/issues/428)
|
136
|
+
- [2a91a6d](https://github.com/appium/ruby_lib/commit/2a91a6dcd50097101e212b1ed9fc64a470dd95da) [add appium_client_version (#421)](https://github.com/appium/ruby_lib/issues/421)
|
137
|
+
- [7c39087](https://github.com/appium/ruby_lib/commit/7c39087676071a4cf27d97fc309e13e968dfb21c) [fix rubocop associated with block call (#422)](https://github.com/appium/ruby_lib/issues/422)
|
138
|
+
- [1979cd8](https://github.com/appium/ruby_lib/commit/1979cd824947d1182fb99ff0f00dbfff165c0aab) [Release 9 1 1 (#427)](https://github.com/appium/ruby_lib/issues/427)
|
132
139
|
- [c016ba3](https://github.com/appium/ruby_lib/commit/c016ba3f9d265ca8b851ec8ed85670ee50b4215b) Release 9.1.1
|
133
140
|
|
134
141
|
|
135
142
|
#### v9.1.1 2016-12-19
|
136
143
|
|
137
144
|
- [c016ba3](https://github.com/appium/ruby_lib/commit/c016ba3f9d265ca8b851ec8ed85670ee50b4215b) Release 9.1.1
|
138
|
-
- [125f144](https://github.com/appium/ruby_lib/commit/125f144481f0b01ab7014ca83968924e7bf827ba) bugfix for finding an array of exact elements in ios (#424)
|
139
|
-
- [586205a](https://github.com/appium/ruby_lib/commit/586205ab9d6ce0c286a6036616a7755b74f6a1ba) Release 9 1 0 (#419)
|
145
|
+
- [125f144](https://github.com/appium/ruby_lib/commit/125f144481f0b01ab7014ca83968924e7bf827ba) [bugfix for finding an array of exact elements in ios (#424)](https://github.com/appium/ruby_lib/issues/424)
|
146
|
+
- [586205a](https://github.com/appium/ruby_lib/commit/586205ab9d6ce0c286a6036616a7755b74f6a1ba) [Release 9 1 0 (#419)](https://github.com/appium/ruby_lib/issues/419)
|
140
147
|
- [ba9ec64](https://github.com/appium/ruby_lib/commit/ba9ec64031f242b3065674b1e4f8b236b391f9fa) Release 9.1.0
|
141
148
|
|
142
149
|
|
143
150
|
#### v9.1.0 2016-12-18
|
144
151
|
|
145
152
|
- [ba9ec64](https://github.com/appium/ruby_lib/commit/ba9ec64031f242b3065674b1e4f8b236b391f9fa) Release 9.1.0
|
146
|
-
- [5e2ed6a](https://github.com/appium/ruby_lib/commit/5e2ed6a984837ff30efa39ebd36e2ee5fc607c89) update readme and template (#418)
|
147
|
-
- [e4b4426](https://github.com/appium/ruby_lib/commit/e4b4426a1322a3a552bad93c4d8a54c9592bebc6) Fix rubocop (#417)
|
148
|
-
- [da4ed34](https://github.com/appium/ruby_lib/commit/da4ed34296ebffff8ed6d6b970ca5ca5a47ca72f) Require ruby 22 (#416)
|
149
|
-
- [858863a](https://github.com/appium/ruby_lib/commit/858863ad88e0d4e32acb109c6bd087a040817fd2) Support over selenium-webdriver3.0.2 (#413)
|
150
|
-
- [fbcaa62](https://github.com/appium/ruby_lib/commit/fbcaa62219eca64ebe8892f02d91b0103ee53909) update selenium-webdriver 3.0 and add patches to work with Appium (#383)
|
151
|
-
- [19fb322](https://github.com/appium/ruby_lib/commit/19fb322fe0d9fc184fc708d111764e8b38c3c188) update some tips for finding elements (#412)
|
152
|
-
- [e485121](https://github.com/appium/ruby_lib/commit/e4851210a2d0202bea3a62aea7f7c33798476466) Release 9 0 0 (#411)
|
153
|
+
- [5e2ed6a](https://github.com/appium/ruby_lib/commit/5e2ed6a984837ff30efa39ebd36e2ee5fc607c89) [update readme and template (#418)](https://github.com/appium/ruby_lib/issues/418)
|
154
|
+
- [e4b4426](https://github.com/appium/ruby_lib/commit/e4b4426a1322a3a552bad93c4d8a54c9592bebc6) [Fix rubocop (#417)](https://github.com/appium/ruby_lib/issues/417)
|
155
|
+
- [da4ed34](https://github.com/appium/ruby_lib/commit/da4ed34296ebffff8ed6d6b970ca5ca5a47ca72f) [Require ruby 22 (#416)](https://github.com/appium/ruby_lib/issues/416)
|
156
|
+
- [858863a](https://github.com/appium/ruby_lib/commit/858863ad88e0d4e32acb109c6bd087a040817fd2) [Support over selenium-webdriver3.0.2 (#413)](https://github.com/appium/ruby_lib/issues/413)
|
157
|
+
- [fbcaa62](https://github.com/appium/ruby_lib/commit/fbcaa62219eca64ebe8892f02d91b0103ee53909) [update selenium-webdriver 3.0 and add patches to work with Appium (#383)](https://github.com/appium/ruby_lib/issues/383)
|
158
|
+
- [19fb322](https://github.com/appium/ruby_lib/commit/19fb322fe0d9fc184fc708d111764e8b38c3c188) [update some tips for finding elements (#412)](https://github.com/appium/ruby_lib/issues/412)
|
159
|
+
- [e485121](https://github.com/appium/ruby_lib/commit/e4851210a2d0202bea3a62aea7f7c33798476466) [Release 9 0 0 (#411)](https://github.com/appium/ruby_lib/issues/411)
|
153
160
|
- [54ff9c4](https://github.com/appium/ruby_lib/commit/54ff9c45df80ce901b718347e79e761f93a4316b) Release 9.0.0
|
154
161
|
|
155
162
|
|
156
163
|
#### v9.0.0 2016-12-09
|
157
164
|
|
158
165
|
- [54ff9c4](https://github.com/appium/ruby_lib/commit/54ff9c45df80ce901b718347e79e761f93a4316b) Release 9.0.0
|
159
|
-
- [930d4c7](https://github.com/appium/ruby_lib/commit/930d4c701865cfab603c5030bd92d6049bb8b5ad) add documentations (#410)
|
160
|
-
- [e765d1f](https://github.com/appium/ruby_lib/commit/e765d1f437a842c942e3efde0a33e15327571ced) Fix tests for xcuitest strategy (#408)
|
161
|
-
- [cfabca1](https://github.com/appium/ruby_lib/commit/cfabca11933247e7fba6946d3128cf58035bd820) Feature/xcuitest (#388)
|
162
|
-
- [75dd133](https://github.com/appium/ruby_lib/commit/75dd133d3279233312926aff66ec026a7c2e8766) Release 8 2 1 (#407)
|
166
|
+
- [930d4c7](https://github.com/appium/ruby_lib/commit/930d4c701865cfab603c5030bd92d6049bb8b5ad) [add documentations (#410)](https://github.com/appium/ruby_lib/issues/410)
|
167
|
+
- [e765d1f](https://github.com/appium/ruby_lib/commit/e765d1f437a842c942e3efde0a33e15327571ced) [Fix tests for xcuitest strategy (#408)](https://github.com/appium/ruby_lib/issues/408)
|
168
|
+
- [cfabca1](https://github.com/appium/ruby_lib/commit/cfabca11933247e7fba6946d3128cf58035bd820) [Feature/xcuitest (#388)](https://github.com/appium/ruby_lib/issues/388)
|
169
|
+
- [75dd133](https://github.com/appium/ruby_lib/commit/75dd133d3279233312926aff66ec026a7c2e8766) [Release 8 2 1 (#407)](https://github.com/appium/ruby_lib/issues/407)
|
163
170
|
- [ad91ee4](https://github.com/appium/ruby_lib/commit/ad91ee47a96bf7a19b6f784dc760ac70b8788e5a) Release 8.2.1
|
164
171
|
|
165
172
|
|
166
173
|
#### v8.2.1 2016-11-29
|
167
174
|
|
168
175
|
- [ad91ee4](https://github.com/appium/ruby_lib/commit/ad91ee47a96bf7a19b6f784dc760ac70b8788e5a) Release 8.2.1
|
169
|
-
- [62488a5](https://github.com/appium/ruby_lib/commit/62488a551ee2545096a2f4256a41c39a82d506fc) bugfix_swipe_with_deltas (#405)
|
170
|
-
- [fdeec0d](https://github.com/appium/ruby_lib/commit/fdeec0de9ac198d77d361c1fb18fc64679d98ac2) Add docs (#404)
|
171
|
-
- [63ce8fa](https://github.com/appium/ruby_lib/commit/63ce8fa4eafffe0607b4fc11d86fbdab01a8f7bb) Release 8.2.0 (#403)
|
176
|
+
- [62488a5](https://github.com/appium/ruby_lib/commit/62488a551ee2545096a2f4256a41c39a82d506fc) [bugfix_swipe_with_deltas (#405)](https://github.com/appium/ruby_lib/issues/405)
|
177
|
+
- [fdeec0d](https://github.com/appium/ruby_lib/commit/fdeec0de9ac198d77d361c1fb18fc64679d98ac2) [Add docs (#404)](https://github.com/appium/ruby_lib/issues/404)
|
178
|
+
- [63ce8fa](https://github.com/appium/ruby_lib/commit/63ce8fa4eafffe0607b4fc11d86fbdab01a8f7bb) [Release 8.2.0 (#403)](https://github.com/appium/ruby_lib/issues/403)
|
172
179
|
- [4535ec9](https://github.com/appium/ruby_lib/commit/4535ec91f435255ae31b4c4fea9d96e5405d79f5) Release 8.2.0
|
173
180
|
- [afcc91e](https://github.com/appium/ruby_lib/commit/afcc91eabea63ec93f70f22b1095f7ce7022af76) Release 8.1.0
|
174
181
|
|
@@ -177,10 +184,10 @@
|
|
177
184
|
|
178
185
|
- [4535ec9](https://github.com/appium/ruby_lib/commit/4535ec91f435255ae31b4c4fea9d96e5405d79f5) Release 8.2.0
|
179
186
|
- [afcc91e](https://github.com/appium/ruby_lib/commit/afcc91eabea63ec93f70f22b1095f7ce7022af76) Release 8.1.0
|
180
|
-
- [8a08021](https://github.com/appium/ruby_lib/commit/8a080213dbe4843f50b6acfbe80628209bfd143d) add endpoint for handling IME in remote bridge (#400)
|
181
|
-
- [222cd47](https://github.com/appium/ruby_lib/commit/222cd47f69ba24b82a122734b0a136e5d6aed330) Allow to name toml files differently than appium.txt, fixes #280 (#397)
|
182
|
-
- [d3a9235](https://github.com/appium/ruby_lib/commit/d3a9235767d6ba770246afac0e62ac58da0eb4b0) update release note and documentation (#396)
|
183
|
-
- [b5ac170](https://github.com/appium/ruby_lib/commit/b5ac170f1269e273a01a51429c5e45d2f3e989b1) Release 810 (#394)
|
187
|
+
- [8a08021](https://github.com/appium/ruby_lib/commit/8a080213dbe4843f50b6acfbe80628209bfd143d) [add endpoint for handling IME in remote bridge (#400)](https://github.com/appium/ruby_lib/issues/400)
|
188
|
+
- [222cd47](https://github.com/appium/ruby_lib/commit/222cd47f69ba24b82a122734b0a136e5d6aed330) [Allow to name toml files differently than appium.txt, fixes #280 (#397)](https://github.com/appium/ruby_lib/issues/397)
|
189
|
+
- [d3a9235](https://github.com/appium/ruby_lib/commit/d3a9235767d6ba770246afac0e62ac58da0eb4b0) [update release note and documentation (#396)](https://github.com/appium/ruby_lib/issues/396)
|
190
|
+
- [b5ac170](https://github.com/appium/ruby_lib/commit/b5ac170f1269e273a01a51429c5e45d2f3e989b1) [Release 810 (#394)](https://github.com/appium/ruby_lib/issues/394)
|
184
191
|
- [95d3a65](https://github.com/appium/ruby_lib/commit/95d3a6535472559590c4d043e887d15acc445a1a) Release 8.1.0
|
185
192
|
- [4b5d817](https://github.com/appium/ruby_lib/commit/4b5d81752565f02645e301555e4be78b0235daf5) Release 8.1.0
|
186
193
|
|
@@ -189,17 +196,17 @@
|
|
189
196
|
|
190
197
|
- [95d3a65](https://github.com/appium/ruby_lib/commit/95d3a6535472559590c4d043e887d15acc445a1a) Release 8.1.0
|
191
198
|
- [4b5d817](https://github.com/appium/ruby_lib/commit/4b5d81752565f02645e301555e4be78b0235daf5) Release 8.1.0
|
192
|
-
- [6c38ca5](https://github.com/appium/ruby_lib/commit/6c38ca5276342ade6168eb9080424a03608a1b3e) replace end_ to delta_ because end_ is deprecated in #380 (#392)
|
193
|
-
- [09654ab](https://github.com/appium/ruby_lib/commit/09654ab9dbc69a31eff7e7bd426db985da09e3b8) Add EventListener to Driver (#389)
|
194
|
-
- [2d8fc5f](https://github.com/appium/ruby_lib/commit/2d8fc5ff7acce9417847e66772b59fc691c1dbaa) Added touch id endpoint (#384)
|
195
|
-
- [11b80e3](https://github.com/appium/ruby_lib/commit/11b80e398e98fbc71e580f659764ba54f87da4f3) Added double_tap and two_finger_tap to Appium::TouchAction (#377)
|
196
|
-
- [2a9f79c](https://github.com/appium/ruby_lib/commit/2a9f79caae337e8770aa56c47d0bd9c17cf1569f) swipe proffers use of delta_x, delta_y instead of end_x, end_y which … (#380)
|
197
|
-
- [6705226](https://github.com/appium/ruby_lib/commit/67052266b601270d2432c18b47739c9681af5563) Use secure sauce endpoint (https://ondemand.saucelabs.com:443) (#378)
|
199
|
+
- [6c38ca5](https://github.com/appium/ruby_lib/commit/6c38ca5276342ade6168eb9080424a03608a1b3e) [replace end_ to delta_ because end_ is deprecated in #380 (#392)](https://github.com/appium/ruby_lib/issues/392)
|
200
|
+
- [09654ab](https://github.com/appium/ruby_lib/commit/09654ab9dbc69a31eff7e7bd426db985da09e3b8) [Add EventListener to Driver (#389)](https://github.com/appium/ruby_lib/issues/389)
|
201
|
+
- [2d8fc5f](https://github.com/appium/ruby_lib/commit/2d8fc5ff7acce9417847e66772b59fc691c1dbaa) [Added touch id endpoint (#384)](https://github.com/appium/ruby_lib/issues/384)
|
202
|
+
- [11b80e3](https://github.com/appium/ruby_lib/commit/11b80e398e98fbc71e580f659764ba54f87da4f3) [Added double_tap and two_finger_tap to Appium::TouchAction (#377)](https://github.com/appium/ruby_lib/issues/377)
|
203
|
+
- [2a9f79c](https://github.com/appium/ruby_lib/commit/2a9f79caae337e8770aa56c47d0bd9c17cf1569f) [swipe proffers use of delta_x, delta_y instead of end_x, end_y which … (#380)](https://github.com/appium/ruby_lib/issues/380)
|
204
|
+
- [6705226](https://github.com/appium/ruby_lib/commit/67052266b601270d2432c18b47739c9681af5563) [Use secure sauce endpoint (https://ondemand.saucelabs.com:443) (#378)](https://github.com/appium/ruby_lib/issues/378)
|
198
205
|
- [acdcff0](https://github.com/appium/ruby_lib/commit/acdcff06ae10f1ff4461ed94486346b4514a6e3a) Merge pull request #376 from sergey-plevako-badoo/add_double_tap_and_two_finger_tap
|
199
206
|
- [eea3a6f](https://github.com/appium/ruby_lib/commit/eea3a6feaccd317b8a8ac4e2f83cc867613cdd02) Added double_tap and two_finger_tap to Appium::TouchAction
|
200
|
-
- [ac03116](https://github.com/appium/ruby_lib/commit/ac03116756a72fbd624fa32ea886123b955d7089) Include url in raised connection error (#374)
|
201
|
-
- [924c28b](https://github.com/appium/ruby_lib/commit/924c28bfa675b23b2519565dbcb0ee3531f05cd9) Fix docs of find elements (#372)
|
202
|
-
- [8b71cdc](https://github.com/appium/ruby_lib/commit/8b71cdc81be8f50f5f97f0131aee5f3dc67c3eb7) Add default value for duration in swipe (#368)
|
207
|
+
- [ac03116](https://github.com/appium/ruby_lib/commit/ac03116756a72fbd624fa32ea886123b955d7089) [Include url in raised connection error (#374)](https://github.com/appium/ruby_lib/issues/374)
|
208
|
+
- [924c28b](https://github.com/appium/ruby_lib/commit/924c28bfa675b23b2519565dbcb0ee3531f05cd9) [Fix docs of find elements (#372)](https://github.com/appium/ruby_lib/issues/372)
|
209
|
+
- [8b71cdc](https://github.com/appium/ruby_lib/commit/8b71cdc81be8f50f5f97f0131aee5f3dc67c3eb7) [Add default value for duration in swipe (#368)](https://github.com/appium/ruby_lib/issues/368)
|
203
210
|
- [f58c8aa](https://github.com/appium/ruby_lib/commit/f58c8aa5a9eb349a7224c5c460c5a866444ff5dd) Merge pull request #363 from SrinivasanTarget/master
|
204
211
|
- [f8cff26](https://github.com/appium/ruby_lib/commit/f8cff2659992962b6ab5bf49fa075b02d2d110ef) updated webdriver dependency
|
205
212
|
|