appium_lib 9.8.2 → 9.8.3
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/.travis.yml +4 -1
- data/CHANGELOG.md +16 -0
- data/appium_lib.gemspec +1 -1
- data/docs/android_docs.md +174 -174
- data/docs/ios_docs.md +232 -232
- data/lib/appium_lib/common/log.rb +2 -2
- data/lib/appium_lib/version.rb +2 -2
- data/release_notes.md +9 -0
- metadata +4 -4
|
@@ -9,7 +9,7 @@ module Appium
|
|
|
9
9
|
# @driver.get_log(:syslog) #=> [[Selenium::WebDriver::LogEntry]]
|
|
10
10
|
#
|
|
11
11
|
def get_log(type)
|
|
12
|
-
|
|
12
|
+
@driver.logs.get type
|
|
13
13
|
end
|
|
14
14
|
|
|
15
15
|
# Get a list of available log types
|
|
@@ -21,7 +21,7 @@ module Appium
|
|
|
21
21
|
# @driver.get_available_log_types #=> [:syslog, :crashlog, :performance]
|
|
22
22
|
#
|
|
23
23
|
def get_available_log_types
|
|
24
|
-
|
|
24
|
+
@driver.logs.available_types
|
|
25
25
|
end
|
|
26
26
|
end # module Common
|
|
27
27
|
end # module Appium
|
data/lib/appium_lib/version.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
module Appium
|
|
2
2
|
# Version and Date are defined on the 'Appium' module, not 'Appium::Common'
|
|
3
|
-
VERSION = '9.8.
|
|
4
|
-
DATE = '
|
|
3
|
+
VERSION = '9.8.3'.freeze unless defined? ::Appium::VERSION
|
|
4
|
+
DATE = '2018-01-13'.freeze unless defined? ::Appium::DATE
|
|
5
5
|
end
|
data/release_notes.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
#### v9.8.2 2017-12-27
|
|
2
|
+
|
|
3
|
+
- [500a7a3](https://github.com/appium/ruby_lib/commit/500a7a39e9db4642332ff5e1816d342cf5b4d4d5) [Release 9 8 2 (#741)](https://github.com/appium/ruby_lib/issues/741)
|
|
4
|
+
- [d465462](https://github.com/appium/ruby_lib/commit/d465462d1ba315a201ab11a01f5272046353fa27) [update core (#740)](https://github.com/appium/ruby_lib/issues/740)
|
|
5
|
+
- [987c4e3](https://github.com/appium/ruby_lib/commit/987c4e37372ca5c5d42a58ead6423b3e941e5ad7) [add handling multiple apps (#738)](https://github.com/appium/ruby_lib/issues/738)
|
|
6
|
+
- [1b8f8e3](https://github.com/appium/ruby_lib/commit/1b8f8e362359a1486508f23bc7f6b9cfafa103c5) [Update and add description for actions (#737)](https://github.com/appium/ruby_lib/issues/737)
|
|
7
|
+
- [c691c36](https://github.com/appium/ruby_lib/commit/c691c360e6052cf6adf369bc4c222478b18ab716) [Add run shell sortcut for android (#732)](https://github.com/appium/ruby_lib/issues/732)
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
#### v9.8.1 2017-12-17
|
|
2
11
|
|
|
3
12
|
- [1081ae0](https://github.com/appium/ruby_lib/commit/1081ae01e7cf5c4682cadcf0219b07912cc3734f) [Release 9 8 1 (#731)](https://github.com/appium/ruby_lib/issues/731)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appium_lib
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 9.8.
|
|
4
|
+
version: 9.8.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- code@bootstraponline.com
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-01-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: appium_lib_core
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.2.
|
|
19
|
+
version: 1.2.5
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 1.2.
|
|
26
|
+
version: 1.2.5
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: tomlrb
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|