appium_lib_core 2.0.3 → 2.0.4
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0f00f304ef07a9a040cdd6196c32610321fa269e
|
|
4
|
+
data.tar.gz: 9e293fa244d6cee282bf135b8d8a0af30d8aa3c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a017b2de66dc4deab0347ba695c41ca1d6a978c58ca3bc564ff0936a8275c0f28647275d5f3ae1ae6f825219e21b76460f7746cfa76e3a1108f736369d909d02
|
|
7
|
+
data.tar.gz: a7cea0f5b57d628756cb78cb84f4617cffba145868a8c9ba4c7d9f7d990a5e8e56a8f1ab4923d7536e208bd565cd21c8cc26ff04779cc11d4cefea664b3745a9
|
data/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,19 @@ All notable changes to this project will be documented in this file.
|
|
|
8
8
|
|
|
9
9
|
### Deprecations
|
|
10
10
|
|
|
11
|
+
## [Unreleased]
|
|
12
|
+
### Enhancements
|
|
13
|
+
- Add custom locator in the future work: [element-finding-plugins](https://github.com/appium/appium/blob/master/docs/en/advanced-concepts/element-finding-plugins.md)
|
|
14
|
+
- https://github.com/appium/appium-base-driver/pull/268/
|
|
15
|
+
```
|
|
16
|
+
@driver.find_element :custom, "f:foo"
|
|
17
|
+
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
### Bug fixes
|
|
21
|
+
|
|
22
|
+
### Deprecations
|
|
23
|
+
|
|
11
24
|
## [2.0.3] - 2018-10-11
|
|
12
25
|
### Enhancements
|
|
13
26
|
- Set `'selenium-webdriver', '~> 3.14.1'`
|
|
@@ -57,7 +57,7 @@ module Appium
|
|
|
57
57
|
# caps: {
|
|
58
58
|
# platformName: :ios,
|
|
59
59
|
# automationName: 'XCUITest',
|
|
60
|
-
# app: 'test/functional/app/UICatalog.app',
|
|
60
|
+
# app: 'test/functional/app/UICatalog.app.zip',
|
|
61
61
|
# platformVersion: '11.4',
|
|
62
62
|
# deviceName: 'iPhone Simulator',
|
|
63
63
|
# useNewWDA: true,
|
|
@@ -76,7 +76,7 @@ module Appium
|
|
|
76
76
|
# caps: {
|
|
77
77
|
# platformName: :ios,
|
|
78
78
|
# automationName: 'XCUITest',
|
|
79
|
-
# app: 'test/functional/app/UICatalog.app',
|
|
79
|
+
# app: 'test/functional/app/UICatalog.app.zip',
|
|
80
80
|
# platformVersion: '11.4',
|
|
81
81
|
# deviceName: 'iPhone Simulator',
|
|
82
82
|
# useNewWDA: true,
|
|
@@ -747,7 +747,7 @@ module Appium
|
|
|
747
747
|
# # "desired"=>
|
|
748
748
|
# # {"platformName"=>"android",
|
|
749
749
|
# # "automationName"=>"uiautomator2",
|
|
750
|
-
# # "app"=>"/path/to/app/api.apk",
|
|
750
|
+
# # "app"=>"/path/to/app/api.apk.zip",
|
|
751
751
|
# # "platformVersion"=>"8.1.0",
|
|
752
752
|
# # "deviceName"=>"Android Emulator",
|
|
753
753
|
# # "appPackage"=>"io.appium.android.apis",
|
|
@@ -756,7 +756,7 @@ module Appium
|
|
|
756
756
|
# # "unicodeKeyboard"=>true,
|
|
757
757
|
# # "resetKeyboard"=>true},
|
|
758
758
|
# # "automationName"=>"uiautomator2",
|
|
759
|
-
# # "app"=>"/path/to/app/api.apk",
|
|
759
|
+
# # "app"=>"/path/to/app/api.apk.zip",
|
|
760
760
|
# # "platformVersion"=>"8.1.0",
|
|
761
761
|
# # "deviceName"=>"emulator-5554",
|
|
762
762
|
# # "appPackage"=>"io.appium.android.apis",
|
|
@@ -7,6 +7,7 @@ module Appium
|
|
|
7
7
|
FINDERS = ::Selenium::WebDriver::SearchContext::FINDERS.merge(
|
|
8
8
|
accessibility_id: 'accessibility id',
|
|
9
9
|
image: '-image',
|
|
10
|
+
custom: '-custom',
|
|
10
11
|
# Android
|
|
11
12
|
uiautomator: '-android uiautomator', # Unavailable in Espresso
|
|
12
13
|
viewtag: '-android viewtag', # Available in Espresso
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
module Appium
|
|
2
2
|
module Core
|
|
3
|
-
VERSION = '2.0.
|
|
4
|
-
DATE = '2018-10-
|
|
3
|
+
VERSION = '2.0.4'.freeze unless defined? ::Appium::Core::VERSION
|
|
4
|
+
DATE = '2018-10-19'.freeze unless defined? ::Appium::Core::DATE
|
|
5
5
|
end
|
|
6
6
|
end
|
data/release_notes.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
#### v2.0.4 2018-10-19
|
|
2
|
+
|
|
3
|
+
- [e0db5f9](https://github.com/appium/ruby_lib_core/commit/e0db5f9fb1ae6178fb16254d76d429bceaecdae4) Release 2.0.4
|
|
4
|
+
- [70d71cd](https://github.com/appium/ruby_lib_core/commit/70d71cd5ca026f22bb9b22159f6e14629505430f) zip test app (#152)
|
|
5
|
+
- [6222a62](https://github.com/appium/ruby_lib_core/commit/6222a62fb6e9d2f13d8deea7e27cb3d11bee86d4) add custom locator (#151)
|
|
6
|
+
|
|
7
|
+
|
|
1
8
|
#### v2.0.3 2018-10-11
|
|
2
9
|
|
|
3
10
|
- [9afbc4c](https://github.com/appium/ruby_lib_core/commit/9afbc4c929a1b9d882e441bf456036cf3386d0ae) Release 2.0.3
|
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: 2.0.
|
|
4
|
+
version: 2.0.4
|
|
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-10-
|
|
11
|
+
date: 2018-10-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: selenium-webdriver
|