appium_lib_core 1.3.5 → 1.3.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/lib/appium_lib_core/common/base/bridge/w3c.rb +4 -2
- 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: af1cd5d9599d123db774f05267dc77bb4900b70e
|
4
|
+
data.tar.gz: 501925dbf5512b8f332a3d144426e359146c0d76
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81a963bb000ada52306905448736a65b560e990f07b74aecd729a38e4b918518ecab1ce141730ffca565bacefcd7f177d5ffbde540f1cde15b93f1e2c9a9f4ee
|
7
|
+
data.tar.gz: 19b2772972932c5262514bc719e0e3ef5546b3b197393bde38e17288a580369513a2107239943d6f3e433ee510aca8f94adab99a96276f98b0e5dc7b268ba62f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# Changelog
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
|
+
|
4
5
|
## [Unreleased]
|
5
6
|
### Enhancements
|
6
7
|
|
@@ -8,6 +9,15 @@ All notable changes to this project will be documented in this file.
|
|
8
9
|
|
9
10
|
### Deprecations
|
10
11
|
|
12
|
+
## [1.3.6] - 2018-04-01
|
13
|
+
### Enhancements
|
14
|
+
- Be able to change `kind` in W3C touch action.
|
15
|
+
- Read: https://github.com/appium/ruby_lib_core/blob/master/lib/appium_lib_core/common/base/bridge/w3c.rb#L29
|
16
|
+
|
17
|
+
### Bug fixes
|
18
|
+
|
19
|
+
### Deprecations
|
20
|
+
|
11
21
|
## [1.3.5] - 2018-03-30
|
12
22
|
### Enhancements
|
13
23
|
- Add a `bug_report` option in `start_recording_screen`, Android
|
@@ -26,9 +26,11 @@ module Appium
|
|
26
26
|
# element = @driver.find_element(:id, "some id")
|
27
27
|
# @driver.action.click(element).perform # The `click` is a part of `PointerActions`
|
28
28
|
#
|
29
|
-
|
29
|
+
# # You can change the kind as the below.
|
30
|
+
# @driver.action(kind: :mouse).click(element).perform # The `click` is a part of `PointerActions`
|
31
|
+
def action(async: false, kind: :touch)
|
30
32
|
::Selenium::WebDriver::W3CActionBuilder.new self,
|
31
|
-
::Selenium::WebDriver::Interactions.pointer(
|
33
|
+
::Selenium::WebDriver::Interactions.pointer(kind, name: kind.to_s),
|
32
34
|
::Selenium::WebDriver::Interactions.key('keyboard'),
|
33
35
|
async
|
34
36
|
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
module Appium
|
2
2
|
module Core
|
3
|
-
VERSION = '1.3.
|
4
|
-
DATE = '2018-
|
3
|
+
VERSION = '1.3.6'.freeze unless defined? ::Appium::Core::VERSION
|
4
|
+
DATE = '2018-04-01'.freeze unless defined? ::Appium::Core::DATE
|
5
5
|
end
|
6
6
|
end
|
data/release_notes.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
#### v1.3.6 2018-04-01
|
2
|
+
|
3
|
+
- [4e54ea5](https://github.com/appium/ruby_lib_core/commit/4e54ea5dbf1bbe02d9e221b29ecf08bd495a4e28) Release 1.3.6
|
4
|
+
- [a3ba034](https://github.com/appium/ruby_lib_core/commit/a3ba034af075ef998e04d3a3a717c14aaf51c05f) be able to change kind for w3c touch action (#70)
|
5
|
+
|
6
|
+
|
1
7
|
#### v1.3.5 2018-03-30
|
2
8
|
|
3
9
|
- [1f10dcb](https://github.com/appium/ruby_lib_core/commit/1f10dcb1448d44fd336317a7d16dd53ee03355f8) Release 1.3.5
|
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.6
|
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-
|
11
|
+
date: 2018-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: selenium-webdriver
|