appium_lib_core 1.3.5 → 1.3.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b31ad437c19f4d1e46c7b4eeea5b1a3e673b7848
4
- data.tar.gz: 06b07c12e1c7e23beacd7a8527516dfa3b798d47
3
+ metadata.gz: af1cd5d9599d123db774f05267dc77bb4900b70e
4
+ data.tar.gz: 501925dbf5512b8f332a3d144426e359146c0d76
5
5
  SHA512:
6
- metadata.gz: 98002924f583609a1f9c5ea6b5e886b4d8e08d58a882c82ddbbbdc370736f1f0e0d11fe3155260f4cd29051fd7efabf4c47cfed32feb6faa63d1a955c213e048
7
- data.tar.gz: e2b316d400db5ac4b3e0169798cd18408a87cf51ac0793a52f127b3f6cc2a4589c8a832600598621083132bbd6e29921d15b210ac60541006cf0fe33870e0b2e
6
+ metadata.gz: 81a963bb000ada52306905448736a65b560e990f07b74aecd729a38e4b918518ecab1ce141730ffca565bacefcd7f177d5ffbde540f1cde15b93f1e2c9a9f4ee
7
+ data.tar.gz: 19b2772972932c5262514bc719e0e3ef5546b3b197393bde38e17288a580369513a2107239943d6f3e433ee510aca8f94adab99a96276f98b0e5dc7b268ba62f
@@ -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
- def action(async = false)
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(:touch, name: 'touch'),
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.5'.freeze unless defined? ::Appium::Core::VERSION
4
- DATE = '2018-03-30'.freeze unless defined? ::Appium::Core::DATE
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
@@ -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.5
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-03-30 00:00:00.000000000 Z
11
+ date: 2018-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: selenium-webdriver