watir 7.2.1 → 7.2.2
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/CHANGES.md +4 -0
- data/lib/watir/capabilities.rb +0 -3
- data/lib/watir/version.rb +1 -1
- data/spec/watirspec/capabilities_spec.rb +7 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 635faa9aa111937b2d90f6ab1585a148d8eea5cf375b4a1dc4d3e164b3e24c38
|
|
4
|
+
data.tar.gz: 31bb99fbba606a62c369c4a89b8c12764e00feff89048179e5958bf4b0abca3d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 131f2cccc8debc1afd14462f90fbafff4d5f349b4caa193247f2adf8efa6f91e03c8218ff8bec23a86d8c4c8e4de18b1c63b38f6cc5c9c878420a9bc01d816f3
|
|
7
|
+
data.tar.gz: c4f5abb5e301fcee62f25a091f299933f2c10e1b703a3378fcd6d850012d989f3e5ac2f9d8fcec170fee44f97ec4758c5894d85e7a7a62d3efaf2f609a733676
|
data/CHANGES.md
CHANGED
data/lib/watir/capabilities.rb
CHANGED
data/lib/watir/version.rb
CHANGED
|
@@ -83,6 +83,13 @@ module Watir
|
|
|
83
83
|
end
|
|
84
84
|
|
|
85
85
|
describe 'capabilities' do
|
|
86
|
+
it 'accepts namespaced value' do
|
|
87
|
+
options = {'key:value' => 'something'}
|
|
88
|
+
@browser = described_class.new(browser_symbol, options: options)
|
|
89
|
+
|
|
90
|
+
expect(generated_options.instance_variable_get(:@options)['key:value']).to eq 'something'
|
|
91
|
+
end
|
|
92
|
+
|
|
86
93
|
it 'just options object has options and watir client without capabilities or service' do
|
|
87
94
|
@browser = described_class.new(options: Options.send(browser_symbol))
|
|
88
95
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: watir
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.2.
|
|
4
|
+
version: 7.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Rodionov
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2023-01-
|
|
13
|
+
date: 2023-01-03 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: regexp_parser
|