appium_lib_core 1.3.6 → 1.3.7
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 +10 -0
- data/lib/appium_lib_core/common/base/bridge/w3c.rb +4 -10
- data/lib/appium_lib_core/version.rb +2 -2
- data/release_notes.md +6 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1fe97b2fae19a2cc555f36251b4d5145e569822a
|
|
4
|
+
data.tar.gz: f82a79867dc8f6c80c33377e70c74001726c3cbd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b38fb749db17091c7aadb89545bee2fe25bca6bd4f7e619ae69575c43a501071618ecafda0977473ffd2703ddd56f675172962203e42ba34b265a85b899dc8b
|
|
7
|
+
data.tar.gz: 052f69ee754a7167880b79c90544491036f7a75901a93d2f71bb69e8ea1875eeadacf92fc0a3f52630bd4a0013f223c9e20becd2cb2dd7a64b522618ae6cc604
|
data/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,16 @@ All notable changes to this project will be documented in this file.
|
|
|
9
9
|
|
|
10
10
|
### Deprecations
|
|
11
11
|
|
|
12
|
+
## [1.3.7] - 2018-04-02
|
|
13
|
+
### Enhancements
|
|
14
|
+
- Only for `ruby_lib_core` internal process
|
|
15
|
+
- Remove `touch` action by default and following `selenium-webdriver` in W3C action.
|
|
16
|
+
- Since XCUITest and UA2 drivers force handling the pointer as `touch`.
|
|
17
|
+
|
|
18
|
+
### Bug fixes
|
|
19
|
+
|
|
20
|
+
### Deprecations
|
|
21
|
+
|
|
12
22
|
## [1.3.6] - 2018-04-01
|
|
13
23
|
### Enhancements
|
|
14
24
|
- Be able to change `kind` in W3C touch action.
|
|
@@ -17,9 +17,8 @@ module Appium
|
|
|
17
17
|
# - https://seleniumhq.github.io/selenium/docs/api/rb/Selenium/WebDriver/PointerActions.html
|
|
18
18
|
# - https://seleniumhq.github.io/selenium/docs/api/rb/Selenium/WebDriver/KeyActions.html
|
|
19
19
|
#
|
|
20
|
-
#
|
|
21
|
-
#
|
|
22
|
-
# override
|
|
20
|
+
# 'mouse' action is by default in the Ruby client. Appium server force the `mouse` action to `touch` once in
|
|
21
|
+
# the server side. So we don't consider the case.
|
|
23
22
|
#
|
|
24
23
|
# @example
|
|
25
24
|
#
|
|
@@ -28,14 +27,9 @@ module Appium
|
|
|
28
27
|
#
|
|
29
28
|
# # You can change the kind as the below.
|
|
30
29
|
# @driver.action(kind: :mouse).click(element).perform # The `click` is a part of `PointerActions`
|
|
31
|
-
|
|
32
|
-
::Selenium::WebDriver::W3CActionBuilder.new self,
|
|
33
|
-
::Selenium::WebDriver::Interactions.pointer(kind, name: kind.to_s),
|
|
34
|
-
::Selenium::WebDriver::Interactions.key('keyboard'),
|
|
35
|
-
async
|
|
36
|
-
end
|
|
37
|
-
alias actions action
|
|
30
|
+
#
|
|
38
31
|
|
|
32
|
+
# Port from MJSONWP
|
|
39
33
|
def get_timeouts
|
|
40
34
|
execute :get_timeouts
|
|
41
35
|
end
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
module Appium
|
|
2
2
|
module Core
|
|
3
|
-
VERSION = '1.3.
|
|
4
|
-
DATE = '2018-04-
|
|
3
|
+
VERSION = '1.3.7'.freeze unless defined? ::Appium::Core::VERSION
|
|
4
|
+
DATE = '2018-04-02'.freeze unless defined? ::Appium::Core::DATE
|
|
5
5
|
end
|
|
6
6
|
end
|
data/release_notes.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
#### v1.3.7 2018-04-02
|
|
2
|
+
|
|
3
|
+
- [e658b98](https://github.com/appium/ruby_lib_core/commit/e658b98c82275b431370cf9d3f8db313f5609bed) Release 1.3.7
|
|
4
|
+
- [b55532a](https://github.com/appium/ruby_lib_core/commit/b55532acbacd7865c681cb50495b2d4eae0e4f8c) remove overrided action (#71)
|
|
5
|
+
|
|
6
|
+
|
|
1
7
|
#### v1.3.6 2018-04-01
|
|
2
8
|
|
|
3
9
|
- [4e54ea5](https://github.com/appium/ruby_lib_core/commit/4e54ea5dbf1bbe02d9e221b29ecf08bd495a4e28) Release 1.3.6
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appium_lib_core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kazuaki MATSUO
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-04-
|
|
11
|
+
date: 2018-04-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: selenium-webdriver
|