appium_lib_core 3.1.0 → 3.1.1

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
  SHA256:
3
- metadata.gz: 4b99e23248eb18bab61065888d154bdd8f919fb7119c303f56aa1d7e381cea2f
4
- data.tar.gz: 151e93c374aeead4c6ac948dc0247426d3153ebcdb368066e063726f4c4b77f6
3
+ metadata.gz: 74fc275d3ef71bc5054e00398bb2b6b0ef2f0fd9a224585a430387c4115dbe8e
4
+ data.tar.gz: 226d7e027e27c2bf6c31338b59d6ab2236a2286c99074f268db04cdf9efd4ed0
5
5
  SHA512:
6
- metadata.gz: 7d0a57d838dbccd400e06a71678e97f4ccad98b3ad49d1c139022f405da1c82e5f75e4da64be6e665337f48506d6bca04b4476d6a336899c13c9c9202510fda0
7
- data.tar.gz: 0b5a97e95801d984a58e110afc5d2b736182bd878b5779472c039712233bb77c44b2566780678060df999d1cd382461212045a7fbd2c63b9e25c66c3713d16da
6
+ metadata.gz: 497e195f39137ddc96f281531925217035a45c4f690b5a8563f0824e02207e8b3358d0ed68a54d651128a340129342c7a44c3af73a7851d49418bb0af315736e
7
+ data.tar.gz: deb950ad6690aec113e83d87cc03a69f9c3e1aacbae7a94dbd568bc97f996f338bb170fd8736a82acbe960b86eeb36a82fe46d08921392408d2a7dec46cabf0c
@@ -5,7 +5,15 @@ Read `release_notes.md` for commit level details.
5
5
  ## [Unreleased]
6
6
 
7
7
  ### Enhancements
8
- - `tvOS` platform support
8
+
9
+ ### Bug fixes
10
+
11
+ ### Deprecations
12
+
13
+ ## [3.1.1] - 2019-04-26
14
+
15
+ ### Enhancements
16
+ - [internal] Catch `Selenium::WebDriver::Error::TimeoutError` which will be used instead of `Selenium::WebDriver::Error::TimeOutError`
9
17
 
10
18
  ### Bug fixes
11
19
 
data/README.md CHANGED
@@ -52,6 +52,10 @@ $ rake test:func:ios # iOS
52
52
  ```bash
53
53
  # Create derivedDataPath in "/tmp/#{org_id}" and reuse xctestrun in the directory
54
54
  $ REAL=true BUNDLE_ID='target-bundleid' WDA_BUNDLEID="ios.appium.WebDriverAgentRunner" ORG_ID=XXXXXXX rake test:func:ios
55
+
56
+ # Run with xcconfig file. The template is in 'test/functional/ios/temp.xcconfig'
57
+ # The PROVISIONING_PROFILE is in '~/Library/MobileDevice/Provisioning\ Profiles/'
58
+ $ REAL=true XCODE_CONFIG_FILE='/path/to/xcconfig' ORG_ID=XXXXXXX rake test:func:ios
55
59
  ```
56
60
 
57
61
  #### Run parallel tests with parallel_tests gem
@@ -133,7 +133,9 @@ module Appium
133
133
  by = _set_by_from_finders(how)
134
134
  begin
135
135
  bridge.find_element_by by, what.to_s, ref
136
- rescue Selenium::WebDriver::Error::TimeOutError
136
+ rescue Selenium::WebDriver::Error::TimeOutError # will deprecate
137
+ raise Selenium::WebDriver::Error::NoSuchElementError
138
+ rescue Selenium::WebDriver::Error::TimeoutError
137
139
  raise Selenium::WebDriver::Error::NoSuchElementError
138
140
  end
139
141
  end
@@ -148,7 +150,9 @@ module Appium
148
150
  by = _set_by_from_finders(how)
149
151
  begin
150
152
  bridge.find_elements_by by, what.to_s, ref
151
- rescue Selenium::WebDriver::Error::TimeOutError
153
+ rescue Selenium::WebDriver::Error::TimeOutError # will deprecate
154
+ []
155
+ rescue Selenium::WebDriver::Error::TimeoutError
152
156
  []
153
157
  end
154
158
  end
@@ -14,7 +14,7 @@
14
14
 
15
15
  module Appium
16
16
  module Core
17
- VERSION = '3.1.0' unless defined? ::Appium::Core::VERSION
18
- DATE = '2019-03-31' unless defined? ::Appium::Core::DATE
17
+ VERSION = '3.1.1' unless defined? ::Appium::Core::VERSION
18
+ DATE = '2019-04-26' unless defined? ::Appium::Core::DATE
19
19
  end
20
20
  end
@@ -1,3 +1,13 @@
1
+ #### v3.1.1 2019-04-26
2
+
3
+ - [10ebb89](https://github.com/appium/ruby_lib_core/commit/10ebb89716b641293f69d75213c6408a8605b4f9) Release 3.1.1
4
+ - [1832c2b](https://github.com/appium/ruby_lib_core/commit/1832c2bcb796e1544d203dfdadea362f7a6e866c) catch Selenium::WebDriver::Error::TimeoutError
5
+ - [469a3e4](https://github.com/appium/ruby_lib_core/commit/469a3e445dab4e00471f91325791909485816dcb) tweak test cases
6
+ - [afe43d2](https://github.com/appium/ruby_lib_core/commit/afe43d2797e06f635b2e7de6faa8bf97e1139ca3) Merge branch 'master' of github.com:appium/ruby_lib_core
7
+ - [c272e1a](https://github.com/appium/ruby_lib_core/commit/c272e1a944e899a011bfd479501b5d420f48a338) add an example of xcodeconfigfile usage
8
+ - [afcdabe](https://github.com/appium/ruby_lib_core/commit/afcdabee718b2a5aabfd24fa3a2ebc9f4ef044ca) add not visible error
9
+
10
+
1
11
  #### v3.1.0 2019-03-31
2
12
 
3
13
  - [b1944d8](https://github.com/appium/ruby_lib_core/commit/b1944d8c219fb3744cd337770baa7dd5c20dfd36) Release 3.1.0
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: 3.1.0
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazuaki MATSUO
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-03-31 00:00:00.000000000 Z
11
+ date: 2019-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: selenium-webdriver