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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec69631e8533b0c1f5a428fd9ae4e65ed1b6400d194f8d3ba7608de1e29704de
4
- data.tar.gz: e45269a6afa488650533d56afd20d12ad542e9557b96b084c16c13db6b746bcf
3
+ metadata.gz: 635faa9aa111937b2d90f6ab1585a148d8eea5cf375b4a1dc4d3e164b3e24c38
4
+ data.tar.gz: 31bb99fbba606a62c369c4a89b8c12764e00feff89048179e5958bf4b0abca3d
5
5
  SHA512:
6
- metadata.gz: c9dd6b62ab7a055f8dcf5630a387f9023ac3041934c0d14a41eb3812b300f73756ba298e0c81eb7a5cb7b4f2fd289249e945bf6bbe8500eb1097e903b08b3d05
7
- data.tar.gz: ea9a050b5a5dd631fa6403c48f4cb641987a94f10b72e37d9afa6648f02f0eba2a5cb91fa795fefb5132e6b47fffe39d917216ab34bc29cca9174e1435fbb8dd
6
+ metadata.gz: 131f2cccc8debc1afd14462f90fbafff4d5f349b4caa193247f2adf8efa6f91e03c8218ff8bec23a86d8c4c8e4de18b1c63b38f6cc5c9c878420a9bc01d816f3
7
+ data.tar.gz: c4f5abb5e301fcee62f25a091f299933f2c10e1b703a3378fcd6d850012d989f3e5ac2f9d8fcec170fee44f97ec4758c5894d85e7a7a62d3efaf2f609a733676
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 7.2.2 (2023-01-03)
2
+
3
+ * Fix bug with processing vendor name-spaced capabilities
4
+
1
5
  ### 7.2.1 (2023-01-02)
2
6
 
3
7
  * Fix bug for building locators with JRuby
@@ -89,9 +89,6 @@ module Watir
89
89
  process_proxy_options(options)
90
90
  browser_specific_options(options)
91
91
 
92
- vendor_opts = process_vendor_options(browser_options)
93
- vendor_opts.each { |opts| options.add_option(opts) }
94
-
95
92
  options
96
93
  end
97
94
 
data/lib/watir/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Watir
4
- VERSION = '7.2.1'
4
+ VERSION = '7.2.2'
5
5
  end
@@ -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.1
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-02 00:00:00.000000000 Z
13
+ date: 2023-01-03 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: regexp_parser