watir 6.10.0 → 6.10.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.document +5 -5
- data/.github/ISSUE_TEMPLATE.md +16 -16
- data/.gitignore +21 -21
- data/.travis.yml +72 -72
- data/CHANGES.md +6 -0
- data/Gemfile +16 -16
- data/LICENSE +23 -23
- data/README.md +106 -106
- data/Rakefile +153 -153
- data/appveyor.yml +13 -13
- data/lib/watir-webdriver.rb +2 -2
- data/lib/watir.rb +158 -158
- data/lib/watir/adjacent.rb +126 -126
- data/lib/watir/after_hooks.rb +132 -132
- data/lib/watir/alert.rb +120 -120
- data/lib/watir/aliases.rb +6 -6
- data/lib/watir/attribute_helper.rb +96 -96
- data/lib/watir/browser.rb +349 -349
- data/lib/watir/capabilities.rb +123 -123
- data/lib/watir/cell_container.rb +25 -25
- data/lib/watir/container.rb +51 -51
- data/lib/watir/cookies.rb +134 -134
- data/lib/watir/element_collection.rb +138 -138
- data/lib/watir/elements/area.rb +12 -12
- data/lib/watir/elements/button.rb +37 -37
- data/lib/watir/elements/cell.rb +17 -17
- data/lib/watir/elements/checkbox.rb +56 -56
- data/lib/watir/elements/dlist.rb +12 -12
- data/lib/watir/elements/element.rb +6 -5
- data/lib/watir/elements/file_field.rb +41 -41
- data/lib/watir/elements/font.rb +25 -25
- data/lib/watir/elements/form.rb +16 -16
- data/lib/watir/elements/hidden.rb +25 -25
- data/lib/watir/elements/html_elements.rb +2035 -2035
- data/lib/watir/elements/iframe.rb +166 -166
- data/lib/watir/elements/image.rb +21 -21
- data/lib/watir/elements/input.rb +15 -15
- data/lib/watir/elements/link.rb +18 -18
- data/lib/watir/elements/list.rb +49 -49
- data/lib/watir/elements/option.rb +72 -72
- data/lib/watir/elements/radio.rb +60 -60
- data/lib/watir/elements/row.rb +17 -17
- data/lib/watir/elements/select.rb +250 -250
- data/lib/watir/elements/svg_elements.rb +613 -613
- data/lib/watir/elements/table.rb +76 -76
- data/lib/watir/elements/table_cell.rb +31 -31
- data/lib/watir/elements/table_row.rb +32 -32
- data/lib/watir/elements/table_section.rb +15 -15
- data/lib/watir/elements/text_area.rb +5 -5
- data/lib/watir/elements/text_field.rb +39 -39
- data/lib/watir/exception.rb +16 -16
- data/lib/watir/extensions/nokogiri.rb +14 -14
- data/lib/watir/generator.rb +3 -3
- data/lib/watir/generator/base.rb +11 -11
- data/lib/watir/generator/base/generator.rb +115 -115
- data/lib/watir/generator/base/idl_sorter.rb +47 -47
- data/lib/watir/generator/base/spec_extractor.rb +138 -138
- data/lib/watir/generator/base/util.rb +21 -21
- data/lib/watir/generator/base/visitor.rb +162 -162
- data/lib/watir/generator/html.rb +15 -15
- data/lib/watir/generator/html/generator.rb +36 -36
- data/lib/watir/generator/html/spec_extractor.rb +50 -50
- data/lib/watir/generator/html/visitor.rb +21 -21
- data/lib/watir/generator/svg.rb +7 -7
- data/lib/watir/generator/svg/generator.rb +38 -38
- data/lib/watir/generator/svg/spec_extractor.rb +53 -53
- data/lib/watir/generator/svg/visitor.rb +21 -21
- data/lib/watir/has_window.rb +68 -68
- data/lib/watir/js_execution.rb +143 -143
- data/lib/watir/js_snippets.rb +16 -16
- data/lib/watir/js_snippets/backgroundColor.js +7 -7
- data/lib/watir/js_snippets/fireEvent.js +31 -31
- data/lib/watir/js_snippets/focus.js +3 -3
- data/lib/watir/js_snippets/getInnerHtml.js +19 -19
- data/lib/watir/js_snippets/getInnerText.js +19 -19
- data/lib/watir/js_snippets/getOuterHtml.js +20 -20
- data/lib/watir/js_snippets/getTextContent.js +19 -19
- data/lib/watir/js_snippets/isImageLoaded.js +3 -3
- data/lib/watir/js_snippets/selectOptionsLabel.js +10 -10
- data/lib/watir/js_snippets/selectOptionsText.js +10 -10
- data/lib/watir/js_snippets/selectOptionsValue.js +10 -10
- data/lib/watir/js_snippets/selectText.js +64 -64
- data/lib/watir/js_snippets/selectedOptions.js +11 -11
- data/lib/watir/js_snippets/setValue.js +3 -3
- data/lib/watir/legacy_wait.rb +126 -126
- data/lib/watir/locators.rb +60 -60
- data/lib/watir/locators/button/locator.rb +31 -31
- data/lib/watir/locators/button/selector_builder.rb +30 -30
- data/lib/watir/locators/button/selector_builder/xpath.rb +29 -29
- data/lib/watir/locators/button/validator.rb +15 -15
- data/lib/watir/locators/cell/locator.rb +15 -15
- data/lib/watir/locators/cell/selector_builder.rb +24 -24
- data/lib/watir/locators/element/locator.rb +1 -0
- data/lib/watir/locators/element/selector_builder.rb +150 -150
- data/lib/watir/locators/element/selector_builder/xpath.rb +119 -119
- data/lib/watir/locators/element/validator.rb +18 -18
- data/lib/watir/locators/row/locator.rb +15 -15
- data/lib/watir/locators/row/selector_builder.rb +29 -29
- data/lib/watir/locators/text_area/locator.rb +13 -13
- data/lib/watir/locators/text_area/selector_builder.rb +22 -22
- data/lib/watir/locators/text_field/locator.rb +30 -30
- data/lib/watir/locators/text_field/selector_builder.rb +31 -31
- data/lib/watir/locators/text_field/selector_builder/xpath.rb +17 -17
- data/lib/watir/locators/text_field/validator.rb +12 -12
- data/lib/watir/logger.rb +109 -109
- data/lib/watir/radio_set.rb +231 -231
- data/lib/watir/row_container.rb +36 -36
- data/lib/watir/screenshot.rb +50 -50
- data/lib/watir/user_editable.rb +56 -56
- data/lib/watir/wait.rb +200 -200
- data/lib/watir/wait/timer.rb +52 -52
- data/lib/watir/window.rb +257 -257
- data/lib/watir/xpath_support.rb +20 -20
- data/lib/watirspec.rb +86 -86
- data/lib/watirspec/guards.rb +60 -60
- data/lib/watirspec/implementation.rb +51 -51
- data/lib/watirspec/rake_tasks.rb +115 -115
- data/lib/watirspec/remote_server.rb +38 -38
- data/lib/watirspec/runner.rb +53 -53
- data/lib/watirspec/server.rb +99 -99
- data/lib/watirspec/server/app.rb +76 -76
- data/spec/browser_spec.rb +278 -278
- data/spec/click_spec.rb +19 -19
- data/spec/container_spec.rb +34 -34
- data/spec/element_locator_spec.rb +517 -517
- data/spec/element_spec.rb +158 -158
- data/spec/implementation_spec.rb +24 -24
- data/spec/input_spec.rb +14 -14
- data/spec/locator_spec_helper.rb +55 -55
- data/spec/logger_spec.rb +46 -46
- data/spec/spec_helper.rb +22 -22
- data/spec/special_chars_spec.rb +13 -13
- data/spec/watirspec/adjacent_spec.rb +227 -227
- data/spec/watirspec/after_hooks_spec.rb +182 -182
- data/spec/watirspec/alert_spec.rb +108 -108
- data/spec/watirspec/attributes_spec.rb +16 -16
- data/spec/watirspec/browser_spec.rb +281 -281
- data/spec/watirspec/cookies_spec.rb +154 -154
- data/spec/watirspec/drag_and_drop_spec.rb +49 -49
- data/spec/watirspec/element_hidden_spec.rb +75 -75
- data/spec/watirspec/elements/area_spec.rb +72 -72
- data/spec/watirspec/elements/areas_spec.rb +42 -42
- data/spec/watirspec/elements/button_spec.rb +277 -277
- data/spec/watirspec/elements/buttons_spec.rb +55 -55
- data/spec/watirspec/elements/checkbox_spec.rb +275 -275
- data/spec/watirspec/elements/checkboxes_spec.rb +44 -44
- data/spec/watirspec/elements/collections_spec.rb +52 -52
- data/spec/watirspec/elements/dd_spec.rb +124 -124
- data/spec/watirspec/elements/dds_spec.rb +42 -42
- data/spec/watirspec/elements/del_spec.rb +126 -126
- data/spec/watirspec/elements/dels_spec.rb +40 -40
- data/spec/watirspec/elements/div_spec.rb +245 -245
- data/spec/watirspec/elements/divs_spec.rb +42 -42
- data/spec/watirspec/elements/dl_spec.rb +142 -142
- data/spec/watirspec/elements/dls_spec.rb +43 -43
- data/spec/watirspec/elements/dt_spec.rb +122 -122
- data/spec/watirspec/elements/dts_spec.rb +42 -42
- data/spec/watirspec/elements/element_spec.rb +483 -483
- data/spec/watirspec/elements/elements_spec.rb +47 -47
- data/spec/watirspec/elements/em_spec.rb +96 -96
- data/spec/watirspec/elements/ems_spec.rb +43 -43
- data/spec/watirspec/elements/filefield_spec.rb +170 -170
- data/spec/watirspec/elements/filefields_spec.rb +43 -43
- data/spec/watirspec/elements/font_spec.rb +29 -29
- data/spec/watirspec/elements/form_spec.rb +66 -66
- data/spec/watirspec/elements/forms_spec.rb +46 -46
- data/spec/watirspec/elements/frame_spec.rb +123 -123
- data/spec/watirspec/elements/frames_spec.rb +41 -41
- data/spec/watirspec/elements/hidden_spec.rb +104 -104
- data/spec/watirspec/elements/hiddens_spec.rb +43 -43
- data/spec/watirspec/elements/hn_spec.rb +92 -92
- data/spec/watirspec/elements/hns_spec.rb +38 -38
- data/spec/watirspec/elements/iframe_spec.rb +10 -0
- data/spec/watirspec/elements/iframes_spec.rb +47 -47
- data/spec/watirspec/elements/image_spec.rb +158 -158
- data/spec/watirspec/elements/images_spec.rb +40 -40
- data/spec/watirspec/elements/ins_spec.rb +127 -127
- data/spec/watirspec/elements/inses_spec.rb +40 -40
- data/spec/watirspec/elements/label_spec.rb +75 -75
- data/spec/watirspec/elements/labels_spec.rb +40 -40
- data/spec/watirspec/elements/li_spec.rb +111 -111
- data/spec/watirspec/elements/link_spec.rb +171 -171
- data/spec/watirspec/elements/links_spec.rb +44 -44
- data/spec/watirspec/elements/lis_spec.rb +42 -42
- data/spec/watirspec/elements/list_spec.rb +32 -32
- data/spec/watirspec/elements/map_spec.rb +75 -75
- data/spec/watirspec/elements/maps_spec.rb +41 -41
- data/spec/watirspec/elements/meta_spec.rb +23 -23
- data/spec/watirspec/elements/metas_spec.rb +40 -40
- data/spec/watirspec/elements/ol_spec.rb +87 -87
- data/spec/watirspec/elements/ols_spec.rb +40 -40
- data/spec/watirspec/elements/option_spec.rb +121 -121
- data/spec/watirspec/elements/p_spec.rb +111 -111
- data/spec/watirspec/elements/pre_spec.rb +111 -111
- data/spec/watirspec/elements/pres_spec.rb +40 -40
- data/spec/watirspec/elements/ps_spec.rb +40 -40
- data/spec/watirspec/elements/radio_spec.rb +273 -273
- data/spec/watirspec/elements/radios_spec.rb +43 -43
- data/spec/watirspec/elements/select_list_spec.rb +553 -553
- data/spec/watirspec/elements/select_lists_spec.rb +46 -46
- data/spec/watirspec/elements/span_spec.rb +128 -128
- data/spec/watirspec/elements/spans_spec.rb +40 -40
- data/spec/watirspec/elements/strong_spec.rb +88 -88
- data/spec/watirspec/elements/strongs_spec.rb +43 -43
- data/spec/watirspec/elements/table_nesting_spec.rb +51 -51
- data/spec/watirspec/elements/table_spec.rb +156 -156
- data/spec/watirspec/elements/tables_spec.rb +42 -42
- data/spec/watirspec/elements/tbody_spec.rb +93 -93
- data/spec/watirspec/elements/tbodys_spec.rb +62 -62
- data/spec/watirspec/elements/td_spec.rb +93 -93
- data/spec/watirspec/elements/tds_spec.rb +53 -53
- data/spec/watirspec/elements/text_field_spec.rb +360 -360
- data/spec/watirspec/elements/text_fields_spec.rb +44 -44
- data/spec/watirspec/elements/textarea_spec.rb +26 -26
- data/spec/watirspec/elements/textareas_spec.rb +24 -24
- data/spec/watirspec/elements/tfoot_spec.rb +86 -86
- data/spec/watirspec/elements/tfoots_spec.rb +68 -68
- data/spec/watirspec/elements/thead_spec.rb +86 -86
- data/spec/watirspec/elements/theads_spec.rb +68 -68
- data/spec/watirspec/elements/tr_spec.rb +78 -78
- data/spec/watirspec/elements/trs_spec.rb +61 -61
- data/spec/watirspec/elements/ul_spec.rb +76 -76
- data/spec/watirspec/elements/uls_spec.rb +39 -39
- data/spec/watirspec/html/alerts.html +12 -12
- data/spec/watirspec/html/aria_attributes.html +9 -9
- data/spec/watirspec/html/class_locator.html +8 -8
- data/spec/watirspec/html/clicks.html +19 -19
- data/spec/watirspec/html/closeable.html +12 -12
- data/spec/watirspec/html/collections.html +14 -14
- data/spec/watirspec/html/css/jquery-ui-1.8.17.custom.css +286 -286
- data/spec/watirspec/html/data_attributes.html +9 -9
- data/spec/watirspec/html/definition_lists.html +47 -47
- data/spec/watirspec/html/drag_and_drop.html +106 -106
- data/spec/watirspec/html/font.html +10 -10
- data/spec/watirspec/html/forms_with_input_elements.html +174 -174
- data/spec/watirspec/html/frame_1.html +22 -22
- data/spec/watirspec/html/frame_2.html +15 -15
- data/spec/watirspec/html/frames.html +10 -10
- data/spec/watirspec/html/hover.html +11 -11
- data/spec/watirspec/html/iframe_1.html +22 -22
- data/spec/watirspec/html/iframes.html +12 -12
- data/spec/watirspec/html/images.html +27 -27
- data/spec/watirspec/html/inner_outer.html +4 -4
- data/spec/watirspec/html/javascript/angular.min.js +331 -331
- data/spec/watirspec/html/javascript/helpers.js +16 -16
- data/spec/watirspec/html/javascript/jquery-1.7.1.min.js +3 -3
- data/spec/watirspec/html/javascript/jquery-ui-1.8.17.custom.min.js +67 -67
- data/spec/watirspec/html/keylogger.html +14 -14
- data/spec/watirspec/html/modal_dialog.html +9 -9
- data/spec/watirspec/html/multiple_ids.html +14 -14
- data/spec/watirspec/html/nested_elements.html +33 -33
- data/spec/watirspec/html/nested_frame_2.html +9 -9
- data/spec/watirspec/html/nested_frame_3.html +14 -14
- data/spec/watirspec/html/nested_frames.html +10 -10
- data/spec/watirspec/html/nested_iframe_2.html +12 -12
- data/spec/watirspec/html/nested_iframes.html +13 -13
- data/spec/watirspec/html/nested_tables.html +202 -202
- data/spec/watirspec/html/non_control_elements.html +140 -140
- data/spec/watirspec/html/removed_element.html +24 -24
- data/spec/watirspec/html/right_click.html +10 -10
- data/spec/watirspec/html/special_chars.html +11 -11
- data/spec/watirspec/html/tables.html +120 -120
- data/spec/watirspec/html/timeout_window_location.html +19 -19
- data/spec/watirspec/html/uneven_table.html +20 -20
- data/spec/watirspec/html/wait.html +84 -84
- data/spec/watirspec/html/window_switching.html +11 -11
- data/spec/watirspec/radio_set_spec.rb +336 -336
- data/spec/watirspec/relaxed_locate_spec.rb +99 -99
- data/spec/watirspec/screenshot_spec.rb +29 -29
- data/spec/watirspec/support/raise_exception_matchers.rb +36 -36
- data/spec/watirspec/wait_spec.rb +381 -381
- data/spec/watirspec/window_switching_spec.rb +415 -415
- data/spec/watirspec_helper.rb +161 -161
- data/support/appveyor.cmd +9 -9
- data/support/doctest_helper.rb +101 -101
- data/support/travis.sh +11 -11
- data/support/version_differ.rb +59 -59
- data/watir.gemspec +1 -1
- metadata +4 -170
@@ -1,415 +1,415 @@
|
|
1
|
-
require "watirspec_helper"
|
2
|
-
|
3
|
-
describe "Browser" do
|
4
|
-
before do
|
5
|
-
url = WatirSpec.url_for("window_switching.html")
|
6
|
-
browser.goto url
|
7
|
-
browser.a(id: "open").click
|
8
|
-
Watir::Wait.until { browser.windows.size == 2 }
|
9
|
-
end
|
10
|
-
|
11
|
-
after do
|
12
|
-
browser.original_window.use
|
13
|
-
browser.windows.reject(&:current?).each(&:close)
|
14
|
-
end
|
15
|
-
|
16
|
-
describe "#windows" do
|
17
|
-
it "returns an array of window handles" do
|
18
|
-
wins = browser.windows
|
19
|
-
expect(wins).to_not be_empty
|
20
|
-
wins.each { |win| expect(win).to be_kind_of(Watir::Window) }
|
21
|
-
end
|
22
|
-
|
23
|
-
it "only returns windows matching the given selector" do
|
24
|
-
expect(browser.windows(title: "closeable window").size).to eq 1
|
25
|
-
end
|
26
|
-
|
27
|
-
it "raises ArgumentError if the selector is invalid" do
|
28
|
-
expect { browser.windows(name: "foo") }.to raise_error(ArgumentError)
|
29
|
-
end
|
30
|
-
|
31
|
-
it "returns an empty array if no window matches the selector" do
|
32
|
-
expect(browser.windows(title: "noop")).to eq []
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
describe "#window" do
|
37
|
-
it "finds window by :url" do
|
38
|
-
w = browser.window(url: /closeable\.html/).use
|
39
|
-
expect(w).to be_kind_of(Watir::Window)
|
40
|
-
end
|
41
|
-
|
42
|
-
it "finds window by :title" do
|
43
|
-
w = browser.window(title: "closeable window").use
|
44
|
-
expect(w).to be_kind_of(Watir::Window)
|
45
|
-
end
|
46
|
-
|
47
|
-
it "finds window by :index" do
|
48
|
-
w = browser.window(index: 1).use
|
49
|
-
expect(w).to be_kind_of(Watir::Window)
|
50
|
-
end
|
51
|
-
|
52
|
-
it "should not find incorrect handle" do
|
53
|
-
expect(browser.window(handle: 'bar')).to_not be_present
|
54
|
-
end
|
55
|
-
|
56
|
-
it "returns the current window if no argument is given" do
|
57
|
-
expect(browser.window.url).to match(/window_switching\.html/)
|
58
|
-
end
|
59
|
-
|
60
|
-
it "stores the reference to a window when no argument is given" do
|
61
|
-
original_window = browser.window
|
62
|
-
browser.window(index: 1).use
|
63
|
-
expect(original_window.url).to match(/window_switching\.html/)
|
64
|
-
end
|
65
|
-
|
66
|
-
bug "https://bugzilla.mozilla.org/show_bug.cgi?id=1223277", :firefox do
|
67
|
-
not_compliant_on :headless do
|
68
|
-
it "it executes the given block in the window" do
|
69
|
-
browser.window(title: "closeable window") do
|
70
|
-
link = browser.a(id: "close")
|
71
|
-
expect(link).to exist
|
72
|
-
link.click
|
73
|
-
end.wait_while_present
|
74
|
-
|
75
|
-
expect(browser.windows.size).to eq 1
|
76
|
-
end
|
77
|
-
end
|
78
|
-
end
|
79
|
-
|
80
|
-
it "raises ArgumentError if the selector is invalid" do
|
81
|
-
expect { browser.window(name: "foo") }.to raise_error(ArgumentError)
|
82
|
-
end
|
83
|
-
|
84
|
-
it "raises a NoMatchingWindowFoundException error if no window matches the selector" do
|
85
|
-
expect { browser.window(title: "noop").use }.to raise_no_matching_window_exception
|
86
|
-
end
|
87
|
-
|
88
|
-
it "raises a NoMatchingWindowFoundException error if there's no window at the given index" do
|
89
|
-
expect { browser.window(index: 100).use }.to raise_no_matching_window_exception
|
90
|
-
end
|
91
|
-
|
92
|
-
it "raises NoMatchingWindowFoundException error when attempting to use a window with an incorrect handle" do
|
93
|
-
expect { browser.window(handle: 'bar').use }.to raise_no_matching_window_exception
|
94
|
-
end
|
95
|
-
end
|
96
|
-
end
|
97
|
-
|
98
|
-
describe "Window" do
|
99
|
-
context 'multiple windows' do
|
100
|
-
before do
|
101
|
-
browser.goto WatirSpec.url_for("window_switching.html")
|
102
|
-
browser.a(id: "open").click
|
103
|
-
Watir::Wait.until { browser.windows.size == 2 }
|
104
|
-
end
|
105
|
-
|
106
|
-
after do
|
107
|
-
browser.original_window.use
|
108
|
-
browser.windows.reject(&:current?).each(&:close)
|
109
|
-
end
|
110
|
-
|
111
|
-
not_compliant_on :safari, %i(firefox linux) do
|
112
|
-
describe "#close" do
|
113
|
-
it "closes a window" do
|
114
|
-
browser.a(id: "open").click
|
115
|
-
Watir::Wait.until { browser.windows.size == 3 }
|
116
|
-
|
117
|
-
browser.window(title: "closeable window").close
|
118
|
-
expect(browser.windows.size).to eq 2
|
119
|
-
end
|
120
|
-
end
|
121
|
-
|
122
|
-
it "closes the current window" do
|
123
|
-
browser.a(id: "open").click
|
124
|
-
Watir::Wait.until { browser.windows.size == 3 }
|
125
|
-
|
126
|
-
window = browser.window(title: "closeable window").use
|
127
|
-
window.close
|
128
|
-
expect(browser.windows.size).to eq 2
|
129
|
-
end
|
130
|
-
end
|
131
|
-
|
132
|
-
describe "#use" do
|
133
|
-
it "switches to the window" do
|
134
|
-
browser.window(title: "closeable window").use
|
135
|
-
expect(browser.title).to eq "closeable window"
|
136
|
-
end
|
137
|
-
end
|
138
|
-
|
139
|
-
describe "#current?" do
|
140
|
-
it "returns true if it is the current window" do
|
141
|
-
expect(browser.window(title: browser.title)).to be_current
|
142
|
-
end
|
143
|
-
|
144
|
-
it "returns false if it is not the current window" do
|
145
|
-
expect(browser.window(title: "closeable window")).to_not be_current
|
146
|
-
end
|
147
|
-
end
|
148
|
-
|
149
|
-
describe "#title" do
|
150
|
-
it "returns the title of the window" do
|
151
|
-
titles = browser.windows.map(&:title)
|
152
|
-
expect(titles.size).to eq 2
|
153
|
-
|
154
|
-
expect(titles.sort).to eq ["window switching", "closeable window"].sort
|
155
|
-
end
|
156
|
-
|
157
|
-
it "does not change the current window" do
|
158
|
-
expect(browser.title).to eq "window switching"
|
159
|
-
expect(browser.windows.find { |w| w.title == "closeable window" }).to_not be_nil
|
160
|
-
expect(browser.title).to eq "window switching"
|
161
|
-
end
|
162
|
-
end
|
163
|
-
|
164
|
-
describe "#url" do
|
165
|
-
it "returns the url of the window" do
|
166
|
-
expect(browser.windows.select { |w| w.url =~ (/window_switching\.html/) }.size).to eq 1
|
167
|
-
expect(browser.windows.select { |w| w.url =~ (/closeable\.html$/) }.size).to eq 1
|
168
|
-
end
|
169
|
-
|
170
|
-
it "does not change the current window" do
|
171
|
-
expect(browser.url).to match(/window_switching\.html/)
|
172
|
-
expect(browser.windows.find { |w| w.url =~ (/closeable\.html/) }).to_not be_nil
|
173
|
-
expect(browser.url).to match(/window_switching/)
|
174
|
-
end
|
175
|
-
end
|
176
|
-
|
177
|
-
describe "#eql?" do
|
178
|
-
it "knows when two windows are equal" do
|
179
|
-
expect(browser.window).to eq browser.window(index: 0)
|
180
|
-
end
|
181
|
-
|
182
|
-
it "knows when two windows are not equal" do
|
183
|
-
win1 = browser.window(index: 0)
|
184
|
-
win2 = browser.window(index: 1)
|
185
|
-
|
186
|
-
expect(win1).to_not eq win2
|
187
|
-
end
|
188
|
-
end
|
189
|
-
|
190
|
-
not_compliant_on :relaxed_locate do
|
191
|
-
describe "#wait_until &:present?" do
|
192
|
-
it "times out waiting for a non-present window" do
|
193
|
-
expect {
|
194
|
-
browser.window(title: "noop").wait_until(timeout: 0.5, &:present?)
|
195
|
-
}.to raise_error(Watir::Wait::TimeoutError)
|
196
|
-
end
|
197
|
-
end
|
198
|
-
end
|
199
|
-
end
|
200
|
-
|
201
|
-
context "with a closed window" do
|
202
|
-
before do
|
203
|
-
browser.goto WatirSpec.url_for("window_switching.html")
|
204
|
-
browser.a(id: "open").click
|
205
|
-
Watir::Wait.until { browser.windows.size == 2 }
|
206
|
-
end
|
207
|
-
|
208
|
-
after do
|
209
|
-
browser.original_window.use
|
210
|
-
browser.windows.reject(&:current?).each(&:close)
|
211
|
-
end
|
212
|
-
|
213
|
-
bug "https://bugzilla.mozilla.org/show_bug.cgi?id=1223277", :firefox do
|
214
|
-
not_compliant_on :headless do
|
215
|
-
describe "#exists?" do
|
216
|
-
it "returns false if previously referenced window is closed" do
|
217
|
-
window = browser.window(title: "closeable window")
|
218
|
-
window.use
|
219
|
-
browser.a(id: "close").click
|
220
|
-
Watir::Wait.until { browser.windows.size == 1 }
|
221
|
-
expect(window).to_not be_present
|
222
|
-
end
|
223
|
-
|
224
|
-
it "returns false if closed window is referenced" do
|
225
|
-
browser.window(title: "closeable window").use
|
226
|
-
browser.a(id: "close").click
|
227
|
-
Watir::Wait.until { browser.windows.size == 1 }
|
228
|
-
expect(browser.window).to_not be_present
|
229
|
-
end
|
230
|
-
end
|
231
|
-
end
|
232
|
-
end
|
233
|
-
|
234
|
-
describe "#current?" do
|
235
|
-
it "returns false if the referenced window is closed" do
|
236
|
-
original_window = browser.window
|
237
|
-
browser.window(title: "closeable window").use
|
238
|
-
original_window.close
|
239
|
-
expect(original_window).to_not be_current
|
240
|
-
end
|
241
|
-
end
|
242
|
-
|
243
|
-
not_compliant_on :safari, :headless do
|
244
|
-
describe "#eql?" do
|
245
|
-
it "should return false when checking equivalence to a closed window" do
|
246
|
-
original_window = browser.window
|
247
|
-
other_window = browser.window(index: 1)
|
248
|
-
other_window.use
|
249
|
-
original_window.close
|
250
|
-
expect(other_window == original_window).to be false
|
251
|
-
end
|
252
|
-
end
|
253
|
-
end
|
254
|
-
|
255
|
-
not_compliant_on :headless do
|
256
|
-
describe "#use" do
|
257
|
-
it "raises NoMatchingWindowFoundException error when attempting to use a referenced window that is closed" do
|
258
|
-
original_window = browser.window
|
259
|
-
browser.window(index: 1).use
|
260
|
-
original_window.close
|
261
|
-
expect { original_window.use }.to raise_no_matching_window_exception
|
262
|
-
end
|
263
|
-
|
264
|
-
bug "https://bugzilla.mozilla.org/show_bug.cgi?id=1223277", :firefox do
|
265
|
-
it "raises NoMatchingWindowFoundException error when attempting to use the current window if it is closed" do
|
266
|
-
browser.window(title: "closeable window").use
|
267
|
-
browser.a(id: "close").click
|
268
|
-
Watir::Wait.until { browser.windows.size == 1 }
|
269
|
-
expect { browser.window.use }.to raise_no_matching_window_exception
|
270
|
-
end
|
271
|
-
end
|
272
|
-
end
|
273
|
-
end
|
274
|
-
end
|
275
|
-
|
276
|
-
bug "https://bugzilla.mozilla.org/show_bug.cgi?id=1223277", :firefox do
|
277
|
-
not_compliant_on :headless do
|
278
|
-
context "with current window closed" do
|
279
|
-
before do
|
280
|
-
browser.goto WatirSpec.url_for("window_switching.html")
|
281
|
-
browser.a(id: "open").click
|
282
|
-
Watir::Wait.until { browser.windows.size == 2 }
|
283
|
-
browser.window(title: "closeable window").use
|
284
|
-
browser.a(id: "close").click
|
285
|
-
Watir::Wait.until { browser.windows.size == 1 }
|
286
|
-
end
|
287
|
-
|
288
|
-
after do
|
289
|
-
browser.window(index: 0).use
|
290
|
-
browser.windows[1..-1].each(&:close)
|
291
|
-
end
|
292
|
-
|
293
|
-
describe "#present?" do
|
294
|
-
it "should find window by index" do
|
295
|
-
expect(browser.window(index: 0)).to be_present
|
296
|
-
end
|
297
|
-
|
298
|
-
it "should find window by url" do
|
299
|
-
expect(browser.window(url: /window_switching\.html/)).to be_present
|
300
|
-
end
|
301
|
-
|
302
|
-
it "should find window by title" do
|
303
|
-
expect(browser.window(title: "window switching")).to be_present
|
304
|
-
end
|
305
|
-
end
|
306
|
-
|
307
|
-
describe "#use" do
|
308
|
-
|
309
|
-
context "switching windows without blocks" do
|
310
|
-
it "by index" do
|
311
|
-
browser.window(index: 0).use
|
312
|
-
expect(browser.title).to be == "window switching"
|
313
|
-
end
|
314
|
-
|
315
|
-
it "by url" do
|
316
|
-
browser.window(url: /window_switching\.html/).use
|
317
|
-
expect(browser.title).to be == "window switching"
|
318
|
-
end
|
319
|
-
|
320
|
-
it "by title" do
|
321
|
-
browser.window(title: "window switching").use
|
322
|
-
expect(browser.url).to match(/window_switching\.html/)
|
323
|
-
end
|
324
|
-
end
|
325
|
-
|
326
|
-
context "Switching windows with blocks" do
|
327
|
-
it "by index" do
|
328
|
-
browser.window(index: 0).use { expect(browser.title).to be == "window switching" }
|
329
|
-
end
|
330
|
-
|
331
|
-
it "by url" do
|
332
|
-
browser.window(url: /window_switching\.html/).use { expect(browser.title).to be == "window switching" }
|
333
|
-
end
|
334
|
-
|
335
|
-
it "by title" do
|
336
|
-
browser.window(title: "window switching").use { expect(browser.url).to match(/window_switching\.html/) }
|
337
|
-
end
|
338
|
-
end
|
339
|
-
|
340
|
-
end
|
341
|
-
end
|
342
|
-
end
|
343
|
-
end
|
344
|
-
|
345
|
-
context "manipulating size and position" do
|
346
|
-
before do
|
347
|
-
browser.goto WatirSpec.url_for("window_switching.html")
|
348
|
-
end
|
349
|
-
|
350
|
-
not_compliant_on :headless do
|
351
|
-
it "should get the size of the current window" do
|
352
|
-
size = browser.window.size
|
353
|
-
|
354
|
-
expect(size.width).to be > 0
|
355
|
-
expect(size.height).to be > 0
|
356
|
-
end
|
357
|
-
end
|
358
|
-
|
359
|
-
it "should get the position of the current window" do
|
360
|
-
pos = browser.window.position
|
361
|
-
|
362
|
-
expect(pos.x).to be >= 0
|
363
|
-
expect(pos.y).to be >= 0
|
364
|
-
end
|
365
|
-
|
366
|
-
not_compliant_on :headless do
|
367
|
-
it "should resize the window" do
|
368
|
-
initial_size = browser.window.size
|
369
|
-
browser.window.resize_to(
|
370
|
-
initial_size.width - 20,
|
371
|
-
initial_size.height - 20
|
372
|
-
)
|
373
|
-
|
374
|
-
new_size = browser.window.size
|
375
|
-
|
376
|
-
expect(new_size.width).to eq initial_size.width - 20
|
377
|
-
expect(new_size.height).to eq initial_size.height - 20
|
378
|
-
end
|
379
|
-
end
|
380
|
-
|
381
|
-
not_compliant_on :headless, %i(remote firefox) do
|
382
|
-
it "should move the window" do
|
383
|
-
initial_pos = browser.window.position
|
384
|
-
|
385
|
-
browser.window.move_to(
|
386
|
-
initial_pos.x + 2,
|
387
|
-
initial_pos.y + 2
|
388
|
-
)
|
389
|
-
|
390
|
-
new_pos = browser.window.position
|
391
|
-
expect(new_pos.x).to eq initial_pos.x + 2
|
392
|
-
expect(new_pos.y).to eq initial_pos.y + 2
|
393
|
-
end
|
394
|
-
end
|
395
|
-
|
396
|
-
not_compliant_on :headless do
|
397
|
-
compliant_on :window_manager do
|
398
|
-
it "should maximize the window" do
|
399
|
-
initial_size = browser.window.size
|
400
|
-
browser.window.resize_to(
|
401
|
-
initial_size.width,
|
402
|
-
initial_size.height - 20
|
403
|
-
)
|
404
|
-
|
405
|
-
browser.window.maximize
|
406
|
-
browser.wait_until { browser.window.size != initial_size }
|
407
|
-
|
408
|
-
new_size = browser.window.size
|
409
|
-
expect(new_size.width).to be >= initial_size.width
|
410
|
-
expect(new_size.height).to be > (initial_size.height - 20)
|
411
|
-
end
|
412
|
-
end
|
413
|
-
end
|
414
|
-
end
|
415
|
-
end
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "Browser" do
|
4
|
+
before do
|
5
|
+
url = WatirSpec.url_for("window_switching.html")
|
6
|
+
browser.goto url
|
7
|
+
browser.a(id: "open").click
|
8
|
+
Watir::Wait.until { browser.windows.size == 2 }
|
9
|
+
end
|
10
|
+
|
11
|
+
after do
|
12
|
+
browser.original_window.use
|
13
|
+
browser.windows.reject(&:current?).each(&:close)
|
14
|
+
end
|
15
|
+
|
16
|
+
describe "#windows" do
|
17
|
+
it "returns an array of window handles" do
|
18
|
+
wins = browser.windows
|
19
|
+
expect(wins).to_not be_empty
|
20
|
+
wins.each { |win| expect(win).to be_kind_of(Watir::Window) }
|
21
|
+
end
|
22
|
+
|
23
|
+
it "only returns windows matching the given selector" do
|
24
|
+
expect(browser.windows(title: "closeable window").size).to eq 1
|
25
|
+
end
|
26
|
+
|
27
|
+
it "raises ArgumentError if the selector is invalid" do
|
28
|
+
expect { browser.windows(name: "foo") }.to raise_error(ArgumentError)
|
29
|
+
end
|
30
|
+
|
31
|
+
it "returns an empty array if no window matches the selector" do
|
32
|
+
expect(browser.windows(title: "noop")).to eq []
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe "#window" do
|
37
|
+
it "finds window by :url" do
|
38
|
+
w = browser.window(url: /closeable\.html/).use
|
39
|
+
expect(w).to be_kind_of(Watir::Window)
|
40
|
+
end
|
41
|
+
|
42
|
+
it "finds window by :title" do
|
43
|
+
w = browser.window(title: "closeable window").use
|
44
|
+
expect(w).to be_kind_of(Watir::Window)
|
45
|
+
end
|
46
|
+
|
47
|
+
it "finds window by :index" do
|
48
|
+
w = browser.window(index: 1).use
|
49
|
+
expect(w).to be_kind_of(Watir::Window)
|
50
|
+
end
|
51
|
+
|
52
|
+
it "should not find incorrect handle" do
|
53
|
+
expect(browser.window(handle: 'bar')).to_not be_present
|
54
|
+
end
|
55
|
+
|
56
|
+
it "returns the current window if no argument is given" do
|
57
|
+
expect(browser.window.url).to match(/window_switching\.html/)
|
58
|
+
end
|
59
|
+
|
60
|
+
it "stores the reference to a window when no argument is given" do
|
61
|
+
original_window = browser.window
|
62
|
+
browser.window(index: 1).use
|
63
|
+
expect(original_window.url).to match(/window_switching\.html/)
|
64
|
+
end
|
65
|
+
|
66
|
+
bug "https://bugzilla.mozilla.org/show_bug.cgi?id=1223277", :firefox do
|
67
|
+
not_compliant_on :headless do
|
68
|
+
it "it executes the given block in the window" do
|
69
|
+
browser.window(title: "closeable window") do
|
70
|
+
link = browser.a(id: "close")
|
71
|
+
expect(link).to exist
|
72
|
+
link.click
|
73
|
+
end.wait_while_present
|
74
|
+
|
75
|
+
expect(browser.windows.size).to eq 1
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
it "raises ArgumentError if the selector is invalid" do
|
81
|
+
expect { browser.window(name: "foo") }.to raise_error(ArgumentError)
|
82
|
+
end
|
83
|
+
|
84
|
+
it "raises a NoMatchingWindowFoundException error if no window matches the selector" do
|
85
|
+
expect { browser.window(title: "noop").use }.to raise_no_matching_window_exception
|
86
|
+
end
|
87
|
+
|
88
|
+
it "raises a NoMatchingWindowFoundException error if there's no window at the given index" do
|
89
|
+
expect { browser.window(index: 100).use }.to raise_no_matching_window_exception
|
90
|
+
end
|
91
|
+
|
92
|
+
it "raises NoMatchingWindowFoundException error when attempting to use a window with an incorrect handle" do
|
93
|
+
expect { browser.window(handle: 'bar').use }.to raise_no_matching_window_exception
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
describe "Window" do
|
99
|
+
context 'multiple windows' do
|
100
|
+
before do
|
101
|
+
browser.goto WatirSpec.url_for("window_switching.html")
|
102
|
+
browser.a(id: "open").click
|
103
|
+
Watir::Wait.until { browser.windows.size == 2 }
|
104
|
+
end
|
105
|
+
|
106
|
+
after do
|
107
|
+
browser.original_window.use
|
108
|
+
browser.windows.reject(&:current?).each(&:close)
|
109
|
+
end
|
110
|
+
|
111
|
+
not_compliant_on :safari, %i(firefox linux) do
|
112
|
+
describe "#close" do
|
113
|
+
it "closes a window" do
|
114
|
+
browser.a(id: "open").click
|
115
|
+
Watir::Wait.until { browser.windows.size == 3 }
|
116
|
+
|
117
|
+
browser.window(title: "closeable window").close
|
118
|
+
expect(browser.windows.size).to eq 2
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
it "closes the current window" do
|
123
|
+
browser.a(id: "open").click
|
124
|
+
Watir::Wait.until { browser.windows.size == 3 }
|
125
|
+
|
126
|
+
window = browser.window(title: "closeable window").use
|
127
|
+
window.close
|
128
|
+
expect(browser.windows.size).to eq 2
|
129
|
+
end
|
130
|
+
end
|
131
|
+
|
132
|
+
describe "#use" do
|
133
|
+
it "switches to the window" do
|
134
|
+
browser.window(title: "closeable window").use
|
135
|
+
expect(browser.title).to eq "closeable window"
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
139
|
+
describe "#current?" do
|
140
|
+
it "returns true if it is the current window" do
|
141
|
+
expect(browser.window(title: browser.title)).to be_current
|
142
|
+
end
|
143
|
+
|
144
|
+
it "returns false if it is not the current window" do
|
145
|
+
expect(browser.window(title: "closeable window")).to_not be_current
|
146
|
+
end
|
147
|
+
end
|
148
|
+
|
149
|
+
describe "#title" do
|
150
|
+
it "returns the title of the window" do
|
151
|
+
titles = browser.windows.map(&:title)
|
152
|
+
expect(titles.size).to eq 2
|
153
|
+
|
154
|
+
expect(titles.sort).to eq ["window switching", "closeable window"].sort
|
155
|
+
end
|
156
|
+
|
157
|
+
it "does not change the current window" do
|
158
|
+
expect(browser.title).to eq "window switching"
|
159
|
+
expect(browser.windows.find { |w| w.title == "closeable window" }).to_not be_nil
|
160
|
+
expect(browser.title).to eq "window switching"
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
describe "#url" do
|
165
|
+
it "returns the url of the window" do
|
166
|
+
expect(browser.windows.select { |w| w.url =~ (/window_switching\.html/) }.size).to eq 1
|
167
|
+
expect(browser.windows.select { |w| w.url =~ (/closeable\.html$/) }.size).to eq 1
|
168
|
+
end
|
169
|
+
|
170
|
+
it "does not change the current window" do
|
171
|
+
expect(browser.url).to match(/window_switching\.html/)
|
172
|
+
expect(browser.windows.find { |w| w.url =~ (/closeable\.html/) }).to_not be_nil
|
173
|
+
expect(browser.url).to match(/window_switching/)
|
174
|
+
end
|
175
|
+
end
|
176
|
+
|
177
|
+
describe "#eql?" do
|
178
|
+
it "knows when two windows are equal" do
|
179
|
+
expect(browser.window).to eq browser.window(index: 0)
|
180
|
+
end
|
181
|
+
|
182
|
+
it "knows when two windows are not equal" do
|
183
|
+
win1 = browser.window(index: 0)
|
184
|
+
win2 = browser.window(index: 1)
|
185
|
+
|
186
|
+
expect(win1).to_not eq win2
|
187
|
+
end
|
188
|
+
end
|
189
|
+
|
190
|
+
not_compliant_on :relaxed_locate do
|
191
|
+
describe "#wait_until &:present?" do
|
192
|
+
it "times out waiting for a non-present window" do
|
193
|
+
expect {
|
194
|
+
browser.window(title: "noop").wait_until(timeout: 0.5, &:present?)
|
195
|
+
}.to raise_error(Watir::Wait::TimeoutError)
|
196
|
+
end
|
197
|
+
end
|
198
|
+
end
|
199
|
+
end
|
200
|
+
|
201
|
+
context "with a closed window" do
|
202
|
+
before do
|
203
|
+
browser.goto WatirSpec.url_for("window_switching.html")
|
204
|
+
browser.a(id: "open").click
|
205
|
+
Watir::Wait.until { browser.windows.size == 2 }
|
206
|
+
end
|
207
|
+
|
208
|
+
after do
|
209
|
+
browser.original_window.use
|
210
|
+
browser.windows.reject(&:current?).each(&:close)
|
211
|
+
end
|
212
|
+
|
213
|
+
bug "https://bugzilla.mozilla.org/show_bug.cgi?id=1223277", :firefox do
|
214
|
+
not_compliant_on :headless do
|
215
|
+
describe "#exists?" do
|
216
|
+
it "returns false if previously referenced window is closed" do
|
217
|
+
window = browser.window(title: "closeable window")
|
218
|
+
window.use
|
219
|
+
browser.a(id: "close").click
|
220
|
+
Watir::Wait.until { browser.windows.size == 1 }
|
221
|
+
expect(window).to_not be_present
|
222
|
+
end
|
223
|
+
|
224
|
+
it "returns false if closed window is referenced" do
|
225
|
+
browser.window(title: "closeable window").use
|
226
|
+
browser.a(id: "close").click
|
227
|
+
Watir::Wait.until { browser.windows.size == 1 }
|
228
|
+
expect(browser.window).to_not be_present
|
229
|
+
end
|
230
|
+
end
|
231
|
+
end
|
232
|
+
end
|
233
|
+
|
234
|
+
describe "#current?" do
|
235
|
+
it "returns false if the referenced window is closed" do
|
236
|
+
original_window = browser.window
|
237
|
+
browser.window(title: "closeable window").use
|
238
|
+
original_window.close
|
239
|
+
expect(original_window).to_not be_current
|
240
|
+
end
|
241
|
+
end
|
242
|
+
|
243
|
+
not_compliant_on :safari, :headless do
|
244
|
+
describe "#eql?" do
|
245
|
+
it "should return false when checking equivalence to a closed window" do
|
246
|
+
original_window = browser.window
|
247
|
+
other_window = browser.window(index: 1)
|
248
|
+
other_window.use
|
249
|
+
original_window.close
|
250
|
+
expect(other_window == original_window).to be false
|
251
|
+
end
|
252
|
+
end
|
253
|
+
end
|
254
|
+
|
255
|
+
not_compliant_on :headless do
|
256
|
+
describe "#use" do
|
257
|
+
it "raises NoMatchingWindowFoundException error when attempting to use a referenced window that is closed" do
|
258
|
+
original_window = browser.window
|
259
|
+
browser.window(index: 1).use
|
260
|
+
original_window.close
|
261
|
+
expect { original_window.use }.to raise_no_matching_window_exception
|
262
|
+
end
|
263
|
+
|
264
|
+
bug "https://bugzilla.mozilla.org/show_bug.cgi?id=1223277", :firefox do
|
265
|
+
it "raises NoMatchingWindowFoundException error when attempting to use the current window if it is closed" do
|
266
|
+
browser.window(title: "closeable window").use
|
267
|
+
browser.a(id: "close").click
|
268
|
+
Watir::Wait.until { browser.windows.size == 1 }
|
269
|
+
expect { browser.window.use }.to raise_no_matching_window_exception
|
270
|
+
end
|
271
|
+
end
|
272
|
+
end
|
273
|
+
end
|
274
|
+
end
|
275
|
+
|
276
|
+
bug "https://bugzilla.mozilla.org/show_bug.cgi?id=1223277", :firefox do
|
277
|
+
not_compliant_on :headless do
|
278
|
+
context "with current window closed" do
|
279
|
+
before do
|
280
|
+
browser.goto WatirSpec.url_for("window_switching.html")
|
281
|
+
browser.a(id: "open").click
|
282
|
+
Watir::Wait.until { browser.windows.size == 2 }
|
283
|
+
browser.window(title: "closeable window").use
|
284
|
+
browser.a(id: "close").click
|
285
|
+
Watir::Wait.until { browser.windows.size == 1 }
|
286
|
+
end
|
287
|
+
|
288
|
+
after do
|
289
|
+
browser.window(index: 0).use
|
290
|
+
browser.windows[1..-1].each(&:close)
|
291
|
+
end
|
292
|
+
|
293
|
+
describe "#present?" do
|
294
|
+
it "should find window by index" do
|
295
|
+
expect(browser.window(index: 0)).to be_present
|
296
|
+
end
|
297
|
+
|
298
|
+
it "should find window by url" do
|
299
|
+
expect(browser.window(url: /window_switching\.html/)).to be_present
|
300
|
+
end
|
301
|
+
|
302
|
+
it "should find window by title" do
|
303
|
+
expect(browser.window(title: "window switching")).to be_present
|
304
|
+
end
|
305
|
+
end
|
306
|
+
|
307
|
+
describe "#use" do
|
308
|
+
|
309
|
+
context "switching windows without blocks" do
|
310
|
+
it "by index" do
|
311
|
+
browser.window(index: 0).use
|
312
|
+
expect(browser.title).to be == "window switching"
|
313
|
+
end
|
314
|
+
|
315
|
+
it "by url" do
|
316
|
+
browser.window(url: /window_switching\.html/).use
|
317
|
+
expect(browser.title).to be == "window switching"
|
318
|
+
end
|
319
|
+
|
320
|
+
it "by title" do
|
321
|
+
browser.window(title: "window switching").use
|
322
|
+
expect(browser.url).to match(/window_switching\.html/)
|
323
|
+
end
|
324
|
+
end
|
325
|
+
|
326
|
+
context "Switching windows with blocks" do
|
327
|
+
it "by index" do
|
328
|
+
browser.window(index: 0).use { expect(browser.title).to be == "window switching" }
|
329
|
+
end
|
330
|
+
|
331
|
+
it "by url" do
|
332
|
+
browser.window(url: /window_switching\.html/).use { expect(browser.title).to be == "window switching" }
|
333
|
+
end
|
334
|
+
|
335
|
+
it "by title" do
|
336
|
+
browser.window(title: "window switching").use { expect(browser.url).to match(/window_switching\.html/) }
|
337
|
+
end
|
338
|
+
end
|
339
|
+
|
340
|
+
end
|
341
|
+
end
|
342
|
+
end
|
343
|
+
end
|
344
|
+
|
345
|
+
context "manipulating size and position" do
|
346
|
+
before do
|
347
|
+
browser.goto WatirSpec.url_for("window_switching.html")
|
348
|
+
end
|
349
|
+
|
350
|
+
not_compliant_on :headless do
|
351
|
+
it "should get the size of the current window" do
|
352
|
+
size = browser.window.size
|
353
|
+
|
354
|
+
expect(size.width).to be > 0
|
355
|
+
expect(size.height).to be > 0
|
356
|
+
end
|
357
|
+
end
|
358
|
+
|
359
|
+
it "should get the position of the current window" do
|
360
|
+
pos = browser.window.position
|
361
|
+
|
362
|
+
expect(pos.x).to be >= 0
|
363
|
+
expect(pos.y).to be >= 0
|
364
|
+
end
|
365
|
+
|
366
|
+
not_compliant_on :headless do
|
367
|
+
it "should resize the window" do
|
368
|
+
initial_size = browser.window.size
|
369
|
+
browser.window.resize_to(
|
370
|
+
initial_size.width - 20,
|
371
|
+
initial_size.height - 20
|
372
|
+
)
|
373
|
+
|
374
|
+
new_size = browser.window.size
|
375
|
+
|
376
|
+
expect(new_size.width).to eq initial_size.width - 20
|
377
|
+
expect(new_size.height).to eq initial_size.height - 20
|
378
|
+
end
|
379
|
+
end
|
380
|
+
|
381
|
+
not_compliant_on :headless, %i(remote firefox) do
|
382
|
+
it "should move the window" do
|
383
|
+
initial_pos = browser.window.position
|
384
|
+
|
385
|
+
browser.window.move_to(
|
386
|
+
initial_pos.x + 2,
|
387
|
+
initial_pos.y + 2
|
388
|
+
)
|
389
|
+
|
390
|
+
new_pos = browser.window.position
|
391
|
+
expect(new_pos.x).to eq initial_pos.x + 2
|
392
|
+
expect(new_pos.y).to eq initial_pos.y + 2
|
393
|
+
end
|
394
|
+
end
|
395
|
+
|
396
|
+
not_compliant_on :headless do
|
397
|
+
compliant_on :window_manager do
|
398
|
+
it "should maximize the window" do
|
399
|
+
initial_size = browser.window.size
|
400
|
+
browser.window.resize_to(
|
401
|
+
initial_size.width,
|
402
|
+
initial_size.height - 20
|
403
|
+
)
|
404
|
+
|
405
|
+
browser.window.maximize
|
406
|
+
browser.wait_until { browser.window.size != initial_size }
|
407
|
+
|
408
|
+
new_size = browser.window.size
|
409
|
+
expect(new_size.width).to be >= initial_size.width
|
410
|
+
expect(new_size.height).to be > (initial_size.height - 20)
|
411
|
+
end
|
412
|
+
end
|
413
|
+
end
|
414
|
+
end
|
415
|
+
end
|