watir 7.2.0 → 7.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/chrome.yml +1 -1
- data/.github/workflows/edge.yml +1 -1
- data/.github/workflows/firefox.yml +1 -1
- data/.github/workflows/ie.yml +1 -1
- data/.github/workflows/safari.yml +1 -1
- data/.github/workflows/unit.yml +1 -1
- data/.rubocop.yml +25 -12
- data/.rubocop_todo.yml +8 -1
- data/CHANGES.md +6 -1
- data/LICENSE +2 -2
- data/lib/watir/capabilities.rb +1 -1
- data/lib/watir/locators/anchor/selector_builder.rb +3 -0
- data/lib/watir/locators/element/matcher.rb +2 -1
- data/lib/watir/locators/element/selector_builder/regexp_disassembler.rb +2 -1
- data/lib/watir/locators/text_field/matcher.rb +0 -4
- data/lib/watir/version.rb +1 -1
- data/spec/locator_spec_helper.rb +0 -8
- data/spec/unit/capabilities_spec.rb +553 -561
- data/spec/unit/element_locator_spec.rb +89 -78
- data/spec/unit/match_elements/button_spec.rb +69 -62
- data/spec/unit/match_elements/element_spec.rb +303 -309
- data/spec/unit/match_elements/text_field_spec.rb +76 -73
- data/spec/unit/selector_builder/anchor_spec.rb +39 -33
- data/spec/unit/selector_builder/button_spec.rb +209 -202
- data/spec/unit/selector_builder/cell_spec.rb +48 -42
- data/spec/unit/selector_builder/element_spec.rb +634 -627
- data/spec/unit/selector_builder/row_spec.rb +119 -113
- data/spec/unit/selector_builder/text_field_spec.rb +195 -188
- data/spec/unit/selector_builder/textarea_spec.rb +22 -14
- data/spec/unit/wait_spec.rb +85 -81
- data/spec/watirspec/adjacent_spec.rb +249 -247
- data/spec/watirspec/after_hooks_spec.rb +161 -159
- data/spec/watirspec/alert_spec.rb +61 -58
- data/spec/watirspec/browser_spec.rb +409 -409
- data/spec/watirspec/capabilities_spec.rb +89 -99
- data/spec/watirspec/cookies_spec.rb +120 -118
- data/spec/watirspec/drag_and_drop_spec.rb +26 -24
- data/spec/watirspec/element_hidden_spec.rb +66 -60
- data/spec/watirspec/elements/area_spec.rb +49 -47
- data/spec/watirspec/elements/areas_spec.rb +27 -25
- data/spec/watirspec/elements/button_spec.rb +253 -251
- data/spec/watirspec/elements/buttons_spec.rb +36 -34
- data/spec/watirspec/elements/checkbox_spec.rb +48 -36
- data/spec/watirspec/elements/checkboxes_spec.rb +29 -27
- data/spec/watirspec/elements/collections_spec.rb +126 -119
- data/spec/watirspec/elements/date_field_spec.rb +185 -183
- data/spec/watirspec/elements/date_fields_spec.rb +29 -27
- data/spec/watirspec/elements/date_time_field_spec.rb +197 -195
- data/spec/watirspec/elements/date_time_fields_spec.rb +30 -28
- data/spec/watirspec/elements/dd_spec.rb +87 -85
- data/spec/watirspec/elements/dds_spec.rb +27 -25
- data/spec/watirspec/elements/del_spec.rb +106 -104
- data/spec/watirspec/elements/dels_spec.rb +26 -24
- data/spec/watirspec/elements/div_spec.rb +225 -221
- data/spec/watirspec/elements/divs_spec.rb +37 -35
- data/spec/watirspec/elements/dl_spec.rb +110 -108
- data/spec/watirspec/elements/dls_spec.rb +28 -26
- data/spec/watirspec/elements/dt_spec.rb +86 -84
- data/spec/watirspec/elements/dts_spec.rb +27 -25
- data/spec/watirspec/elements/element_spec.rb +794 -775
- data/spec/watirspec/elements/elements_spec.rb +40 -38
- data/spec/watirspec/elements/em_spec.rb +62 -60
- data/spec/watirspec/elements/ems_spec.rb +28 -26
- data/spec/watirspec/elements/filefield_spec.rb +116 -114
- data/spec/watirspec/elements/filefields_spec.rb +28 -26
- data/spec/watirspec/elements/font_spec.rb +20 -18
- data/spec/watirspec/elements/form_spec.rb +51 -49
- data/spec/watirspec/elements/forms_spec.rb +29 -27
- data/spec/watirspec/elements/frame_spec.rb +89 -87
- data/spec/watirspec/elements/frames_spec.rb +27 -25
- data/spec/watirspec/elements/hidden_spec.rb +81 -79
- data/spec/watirspec/elements/hiddens_spec.rb +28 -26
- data/spec/watirspec/elements/hn_spec.rb +59 -57
- data/spec/watirspec/elements/hns_spec.rb +26 -24
- data/spec/watirspec/elements/iframe_spec.rb +195 -191
- data/spec/watirspec/elements/iframes_spec.rb +31 -29
- data/spec/watirspec/elements/image_spec.rb +148 -146
- data/spec/watirspec/elements/images_spec.rb +26 -24
- data/spec/watirspec/elements/input_spec.rb +9 -7
- data/spec/watirspec/elements/ins_spec.rb +106 -104
- data/spec/watirspec/elements/inses_spec.rb +26 -24
- data/spec/watirspec/elements/label_spec.rb +56 -54
- data/spec/watirspec/elements/labels_spec.rb +26 -24
- data/spec/watirspec/elements/li_spec.rb +76 -74
- data/spec/watirspec/elements/link_spec.rb +173 -177
- data/spec/watirspec/elements/links_spec.rb +45 -43
- data/spec/watirspec/elements/lis_spec.rb +27 -25
- data/spec/watirspec/elements/list_spec.rb +44 -42
- data/spec/watirspec/elements/map_spec.rb +57 -55
- data/spec/watirspec/elements/maps_spec.rb +27 -25
- data/spec/watirspec/elements/meta_spec.rb +16 -14
- data/spec/watirspec/elements/metas_spec.rb +26 -24
- data/spec/watirspec/elements/ol_spec.rb +56 -65
- data/spec/watirspec/elements/ols_spec.rb +26 -24
- data/spec/watirspec/elements/option_spec.rb +91 -89
- data/spec/watirspec/elements/p_spec.rb +81 -79
- data/spec/watirspec/elements/pre_spec.rb +77 -75
- data/spec/watirspec/elements/pres_spec.rb +26 -24
- data/spec/watirspec/elements/ps_spec.rb +26 -24
- data/spec/watirspec/elements/radio_spec.rb +251 -249
- data/spec/watirspec/elements/radios_spec.rb +28 -26
- data/spec/watirspec/elements/select_list_spec.rb +537 -526
- data/spec/watirspec/elements/select_lists_spec.rb +32 -30
- data/spec/watirspec/elements/span_spec.rb +112 -110
- data/spec/watirspec/elements/spans_spec.rb +26 -24
- data/spec/watirspec/elements/strong_spec.rb +58 -58
- data/spec/watirspec/elements/strongs_spec.rb +28 -26
- data/spec/watirspec/elements/table_spec.rb +192 -139
- data/spec/watirspec/elements/tables_spec.rb +28 -26
- data/spec/watirspec/elements/tbody_spec.rb +74 -72
- data/spec/watirspec/elements/tbodys_spec.rb +40 -38
- data/spec/watirspec/elements/td_spec.rb +66 -64
- data/spec/watirspec/elements/tds_spec.rb +41 -39
- data/spec/watirspec/elements/text_field_spec.rb +206 -204
- data/spec/watirspec/elements/text_fields_spec.rb +30 -28
- data/spec/watirspec/elements/textarea_spec.rb +20 -18
- data/spec/watirspec/elements/textareas_spec.rb +18 -16
- data/spec/watirspec/elements/tfoot_spec.rb +65 -63
- data/spec/watirspec/elements/tfoots_spec.rb +42 -40
- data/spec/watirspec/elements/thead_spec.rb +65 -63
- data/spec/watirspec/elements/theads_spec.rb +42 -40
- data/spec/watirspec/elements/tr_spec.rb +48 -46
- data/spec/watirspec/elements/trs_spec.rb +42 -40
- data/spec/watirspec/elements/ul_spec.rb +56 -54
- data/spec/watirspec/elements/uls_spec.rb +26 -24
- data/spec/watirspec/radio_set_spec.rb +269 -267
- data/spec/watirspec/screenshot_spec.rb +20 -18
- data/spec/watirspec/scroll_spec.rb +152 -148
- data/spec/watirspec/shadow_root_spec.rb +86 -83
- data/spec/watirspec/user_editable_spec.rb +200 -198
- data/spec/watirspec/wait_spec.rb +289 -295
- data/spec/watirspec/window_switching_spec.rb +422 -434
- data/spec/watirspec_helper.rb +1 -23
- data/watir.gemspec +5 -4
- metadata +44 -33
- data/spec/watirspec/attributes_spec.rb +0 -18
- data/spec/watirspec/elements/table_nesting_spec.rb +0 -51
- data/spec/watirspec/special_chars_spec.rb +0 -23
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec69631e8533b0c1f5a428fd9ae4e65ed1b6400d194f8d3ba7608de1e29704de
|
4
|
+
data.tar.gz: e45269a6afa488650533d56afd20d12ad542e9557b96b084c16c13db6b746bcf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c9dd6b62ab7a055f8dcf5630a387f9023ac3041934c0d14a41eb3812b300f73756ba298e0c81eb7a5cb7b4f2fd289249e945bf6bbe8500eb1097e903b08b3d05
|
7
|
+
data.tar.gz: ea9a050b5a5dd631fa6403c48f4cb641987a94f10b72e37d9afa6648f02f0eba2a5cb91fa795fefb5132e6b47fffe39d917216ab34bc29cca9174e1435fbb8dd
|
data/.github/workflows/edge.yml
CHANGED
data/.github/workflows/ie.yml
CHANGED
data/.github/workflows/unit.yml
CHANGED
data/.rubocop.yml
CHANGED
@@ -3,6 +3,7 @@ inherit_from: .rubocop_todo.yml
|
|
3
3
|
require:
|
4
4
|
- rubocop-performance
|
5
5
|
- rubocop-rake
|
6
|
+
- rubocop-rspec
|
6
7
|
|
7
8
|
AllCops:
|
8
9
|
TargetRubyVersion: 2.7
|
@@ -14,10 +15,6 @@ AllCops:
|
|
14
15
|
Layout/SpaceInsideHashLiteralBraces:
|
15
16
|
EnforcedStyle: no_space
|
16
17
|
|
17
|
-
Lint/UnifiedInteger:
|
18
|
-
Exclude:
|
19
|
-
- 'lib/watir/locators/element/selector_builder.rb'
|
20
|
-
|
21
18
|
Metrics/AbcSize:
|
22
19
|
Max: 22
|
23
20
|
Exclude:
|
@@ -28,15 +25,10 @@ Metrics/AbcSize:
|
|
28
25
|
|
29
26
|
Metrics/BlockLength:
|
30
27
|
Exclude:
|
31
|
-
- 'spec/**/*'
|
32
28
|
- 'support/doctest_helper.rb'
|
33
29
|
- 'watir.gemspec'
|
34
30
|
- 'Rakefile'
|
35
31
|
|
36
|
-
Metrics/ModuleLength:
|
37
|
-
Exclude:
|
38
|
-
- 'spec/**/*'
|
39
|
-
|
40
32
|
Metrics/ClassLength:
|
41
33
|
Max: 93
|
42
34
|
Exclude:
|
@@ -50,6 +42,7 @@ Metrics/ClassLength:
|
|
50
42
|
- 'lib/watir/elements/select.rb'
|
51
43
|
- 'lib/watir/generator/base/spec_extractor.rb'
|
52
44
|
- 'lib/watir/element_collection.rb'
|
45
|
+
- 'spec/**/*_spec.rb'
|
53
46
|
|
54
47
|
Metrics/CyclomaticComplexity:
|
55
48
|
Max: 9
|
@@ -61,14 +54,34 @@ Metrics/MethodLength:
|
|
61
54
|
Max: 18
|
62
55
|
Exclude:
|
63
56
|
- 'lib/watir/locators/element/selector_builder.rb'
|
64
|
-
- 'lib/watir/locators/element/selector_builder/xpath.rb'
|
65
57
|
- 'lib/watir/locators/element/selector_builder/regexp_disassembler.rb'
|
66
58
|
|
59
|
+
Metrics/ModuleLength:
|
60
|
+
Exclude:
|
61
|
+
- 'spec/**/*'
|
62
|
+
|
67
63
|
Metrics/PerceivedComplexity:
|
68
64
|
Max: 10
|
69
65
|
|
70
|
-
|
71
|
-
|
66
|
+
RSpec/AnyInstance:
|
67
|
+
Enabled: false
|
68
|
+
|
69
|
+
RSpec/BeforeAfterAll:
|
70
|
+
Enabled: false
|
71
|
+
|
72
|
+
RSpec/ExampleLength:
|
73
|
+
Enabled: false
|
74
|
+
|
75
|
+
RSpec/MultipleExpectations:
|
76
|
+
Enabled: false
|
77
|
+
|
78
|
+
RSpec/MultipleMemoizedHelpers:
|
79
|
+
Exclude:
|
80
|
+
- 'spec/watirspec/capabilities_spec.rb'
|
81
|
+
|
82
|
+
RSpec/NoExpectationExample:
|
83
|
+
Exclude:
|
84
|
+
- 'spec/watirspec/cookies_spec.rb'
|
72
85
|
|
73
86
|
Style/BlockDelimiters:
|
74
87
|
EnforcedStyle: braces_for_chaining
|
data/.rubocop_todo.yml
CHANGED
@@ -1,10 +1,17 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
3
|
+
# on 2022-12-31 19:29:43 UTC using RuboCop version 1.40.0.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
8
8
|
|
9
|
+
# Offense count: 1
|
10
|
+
RSpec/PendingWithoutReason:
|
11
|
+
Exclude:
|
12
|
+
- 'spec/watirspec/browser_spec.rb'
|
13
|
+
|
14
|
+
# Offense count: 114
|
15
|
+
# Configuration parameters: AllowedConstants.
|
9
16
|
Style/Documentation:
|
10
17
|
Enabled: false
|
data/CHANGES.md
CHANGED
@@ -1,4 +1,9 @@
|
|
1
|
-
### 7.2.
|
1
|
+
### 7.2.1 (2023-01-02)
|
2
|
+
|
3
|
+
* Fix bug for building locators with JRuby
|
4
|
+
* Fix bug for inferring internet explorer browser name from options
|
5
|
+
|
6
|
+
### 7.2.0 (2022-12-24)
|
2
7
|
|
3
8
|
* Implement Shadow DOM support (#953)
|
4
9
|
* Implement existing `Scroll#by` with Selenium Actions Class instead of JavaScript
|
data/LICENSE
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
(the MIT License)
|
2
2
|
|
3
3
|
Copyright (c) 2009-2015 Jari Bakken
|
4
|
-
Copyright (c) 2015-
|
5
|
-
Copyright (c) 2018-
|
4
|
+
Copyright (c) 2015-2023 Alex Rodionov, Titus Fortner
|
5
|
+
Copyright (c) 2018-2023 Justin Ko
|
6
6
|
|
7
7
|
Permission is hereby granted, free of charge, to any person obtaining
|
8
8
|
a copy of this software and associated documentation files (the
|
data/lib/watir/capabilities.rb
CHANGED
@@ -172,7 +172,7 @@ module Watir
|
|
172
172
|
elsif options[:options].is_a?(Selenium::WebDriver::Options)
|
173
173
|
options[:options].class.to_s.split('::')[-2].downcase.to_sym
|
174
174
|
elsif options.key?(:options)
|
175
|
-
options.dig(:options, :browser_name).downcase.to_sym
|
175
|
+
options.dig(:options, :browser_name).tr(' ', '_').downcase.to_sym
|
176
176
|
else
|
177
177
|
:chrome
|
178
178
|
end
|
@@ -58,11 +58,12 @@ module Watir
|
|
58
58
|
end
|
59
59
|
|
60
60
|
def elements_match?(element, values_to_match)
|
61
|
+
class_keys = %i[class class_name]
|
61
62
|
values_to_match.all? do |how, expected|
|
62
63
|
if how == :tag_name
|
63
64
|
validate_tag(element, expected)
|
64
65
|
# TODO: Can this be class_name here or does that get converted?
|
65
|
-
elsif
|
66
|
+
elsif class_keys.include?(how)
|
66
67
|
value = fetch_value(element, how)
|
67
68
|
[expected].flatten.all? do |match|
|
68
69
|
value.split.any? do |class_value|
|
@@ -36,12 +36,13 @@ module Watir
|
|
36
36
|
end
|
37
37
|
|
38
38
|
def extract_strings(expression, strings)
|
39
|
+
meta_set = %i[meta set]
|
39
40
|
expression.each do |exp|
|
40
41
|
if optional?(exp)
|
41
42
|
strings.push(+'')
|
42
43
|
next
|
43
44
|
end
|
44
|
-
if
|
45
|
+
if meta_set.include?(exp.type)
|
45
46
|
strings.push(+'')
|
46
47
|
next
|
47
48
|
end
|
data/lib/watir/version.rb
CHANGED
data/spec/locator_spec_helper.rb
CHANGED
@@ -39,14 +39,6 @@ module LocatorSpecHelper
|
|
39
39
|
Watir::Locators::Element::Locator.new(element_matcher)
|
40
40
|
end
|
41
41
|
|
42
|
-
def expect_one(*args)
|
43
|
-
expect(driver).to receive(:find_element).with(*args)
|
44
|
-
end
|
45
|
-
|
46
|
-
def expect_all(*args)
|
47
|
-
expect(driver).to receive(:find_elements).with(*args)
|
48
|
-
end
|
49
|
-
|
50
42
|
def locate_one(selector = nil)
|
51
43
|
selector ||= @locator || {}
|
52
44
|
locator.locate ordered_hash(selector)
|