watir 6.10.1 → 6.10.2
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 +4 -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 +2 -2
- 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/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 +3 -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 +169 -3
@@ -1,122 +1,122 @@
|
|
1
|
-
require "watirspec_helper"
|
2
|
-
|
3
|
-
describe "Dt" do
|
4
|
-
|
5
|
-
before :each do
|
6
|
-
browser.goto(WatirSpec.url_for("definition_lists.html"))
|
7
|
-
end
|
8
|
-
|
9
|
-
# Exists method
|
10
|
-
describe "#exists?" do
|
11
|
-
it "returns true if the element exists" do
|
12
|
-
expect(browser.dt(id: "experience")).to exist
|
13
|
-
expect(browser.dt(class: "current-industry")).to exist
|
14
|
-
expect(browser.dt(xpath: "//dt[@id='experience']")).to exist
|
15
|
-
expect(browser.dt(index: 0)).to exist
|
16
|
-
end
|
17
|
-
|
18
|
-
it "returns the first dt if given no args" do
|
19
|
-
expect(browser.dt).to exist
|
20
|
-
end
|
21
|
-
|
22
|
-
it "returns false if the element does not exist" do
|
23
|
-
expect(browser.dt(id: "no_such_id")).to_not exist
|
24
|
-
end
|
25
|
-
|
26
|
-
it "raises TypeError when 'what' argument is invalid" do
|
27
|
-
expect { browser.dt(id: 3.14).exists? }.to raise_error(TypeError)
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
# Attribute methods
|
32
|
-
describe "#class_name" do
|
33
|
-
it "returns the class attribute if the element exists" do
|
34
|
-
expect(browser.dt(:id , "experience").class_name).to eq "industry"
|
35
|
-
end
|
36
|
-
|
37
|
-
it "returns an empty string if the element exists but the attribute doesn't" do
|
38
|
-
expect(browser.dt(:id , "education").class_name).to eq ""
|
39
|
-
end
|
40
|
-
|
41
|
-
it "raises UnknownObjectException if the element does not exist" do
|
42
|
-
expect { browser.dt(id: "no_such_id").class_name }.to raise_unknown_object_exception
|
43
|
-
expect { browser.dt(title: "no_such_title").class_name }.to raise_unknown_object_exception
|
44
|
-
expect { browser.dt(index: 1337).class_name }.to raise_unknown_object_exception
|
45
|
-
expect { browser.dt(xpath: "//dt[@id='no_such_id']").class_name }.to raise_unknown_object_exception
|
46
|
-
end
|
47
|
-
end
|
48
|
-
|
49
|
-
describe "#id" do
|
50
|
-
it "returns the id attribute if the element exists" do
|
51
|
-
expect(browser.dt(class: 'industry').id).to eq "experience"
|
52
|
-
end
|
53
|
-
|
54
|
-
it "returns an empty string if the element exists, but the attribute doesn't" do
|
55
|
-
expect(browser.dt(class: 'current-industry').id).to eq ""
|
56
|
-
end
|
57
|
-
|
58
|
-
it "raises UnknownObjectException if the element does not exist" do
|
59
|
-
expect {browser.dt(id: "no_such_id").id }.to raise_unknown_object_exception
|
60
|
-
expect {browser.dt(title: "no_such_id").id }.to raise_unknown_object_exception
|
61
|
-
expect {browser.dt(index: 1337).id }.to raise_unknown_object_exception
|
62
|
-
end
|
63
|
-
end
|
64
|
-
|
65
|
-
describe "#title" do
|
66
|
-
it "returns the title of the element" do
|
67
|
-
expect(browser.dt(id: "experience").title).to eq "experience"
|
68
|
-
end
|
69
|
-
end
|
70
|
-
|
71
|
-
describe "#text" do
|
72
|
-
it "returns the text of the element" do
|
73
|
-
expect(browser.dt(id: "experience").text).to eq "Experience"
|
74
|
-
end
|
75
|
-
|
76
|
-
it "returns an empty string if the element exists but contains no text" do
|
77
|
-
expect(browser.dt(class: 'noop').text).to eq ""
|
78
|
-
end
|
79
|
-
|
80
|
-
it "raises UnknownObjectException if the element does not exist" do
|
81
|
-
expect { browser.dt(id: "no_such_id").text }.to raise_unknown_object_exception
|
82
|
-
expect { browser.dt(title: "no_such_title").text }.to raise_unknown_object_exception
|
83
|
-
expect { browser.dt(index: 1337).text }.to raise_unknown_object_exception
|
84
|
-
expect { browser.dt(xpath: "//dt[@id='no_such_id']").text }.to raise_unknown_object_exception
|
85
|
-
end
|
86
|
-
end
|
87
|
-
|
88
|
-
describe "#respond_to?" do
|
89
|
-
it "returns true for all attribute methods" do
|
90
|
-
expect(browser.dt(index: 0)).to respond_to(:id)
|
91
|
-
expect(browser.dt(index: 0)).to respond_to(:class_name)
|
92
|
-
expect(browser.dt(index: 0)).to respond_to(:style)
|
93
|
-
expect(browser.dt(index: 0)).to respond_to(:text)
|
94
|
-
expect(browser.dt(index: 0)).to respond_to(:title)
|
95
|
-
end
|
96
|
-
end
|
97
|
-
|
98
|
-
# Manipulation methods
|
99
|
-
describe "#click" do
|
100
|
-
it "fires events when clicked" do
|
101
|
-
expect(browser.dt(id: 'education').text).to_not eq 'changed'
|
102
|
-
browser.dt(id: 'education').click
|
103
|
-
expect(browser.dt(id: 'education').text).to eq 'changed'
|
104
|
-
end
|
105
|
-
|
106
|
-
it "raises UnknownObjectException if the element does not exist" do
|
107
|
-
expect { browser.dt(id: "no_such_id").click }.to raise_unknown_object_exception
|
108
|
-
expect { browser.dt(title: "no_such_title").click }.to raise_unknown_object_exception
|
109
|
-
expect { browser.dt(index: 1337).click }.to raise_unknown_object_exception
|
110
|
-
expect { browser.dt(xpath: "//dt[@id='no_such_id']").click }.to raise_unknown_object_exception
|
111
|
-
end
|
112
|
-
end
|
113
|
-
|
114
|
-
describe "#html" do
|
115
|
-
it "returns the HTML of the element" do
|
116
|
-
html = browser.dt(id: 'name').html
|
117
|
-
expect(html).to match(%r[<div>.*Name.*</div>]mi)
|
118
|
-
expect(html).to_not include('</body>')
|
119
|
-
end
|
120
|
-
end
|
121
|
-
|
122
|
-
end
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "Dt" do
|
4
|
+
|
5
|
+
before :each do
|
6
|
+
browser.goto(WatirSpec.url_for("definition_lists.html"))
|
7
|
+
end
|
8
|
+
|
9
|
+
# Exists method
|
10
|
+
describe "#exists?" do
|
11
|
+
it "returns true if the element exists" do
|
12
|
+
expect(browser.dt(id: "experience")).to exist
|
13
|
+
expect(browser.dt(class: "current-industry")).to exist
|
14
|
+
expect(browser.dt(xpath: "//dt[@id='experience']")).to exist
|
15
|
+
expect(browser.dt(index: 0)).to exist
|
16
|
+
end
|
17
|
+
|
18
|
+
it "returns the first dt if given no args" do
|
19
|
+
expect(browser.dt).to exist
|
20
|
+
end
|
21
|
+
|
22
|
+
it "returns false if the element does not exist" do
|
23
|
+
expect(browser.dt(id: "no_such_id")).to_not exist
|
24
|
+
end
|
25
|
+
|
26
|
+
it "raises TypeError when 'what' argument is invalid" do
|
27
|
+
expect { browser.dt(id: 3.14).exists? }.to raise_error(TypeError)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
# Attribute methods
|
32
|
+
describe "#class_name" do
|
33
|
+
it "returns the class attribute if the element exists" do
|
34
|
+
expect(browser.dt(:id , "experience").class_name).to eq "industry"
|
35
|
+
end
|
36
|
+
|
37
|
+
it "returns an empty string if the element exists but the attribute doesn't" do
|
38
|
+
expect(browser.dt(:id , "education").class_name).to eq ""
|
39
|
+
end
|
40
|
+
|
41
|
+
it "raises UnknownObjectException if the element does not exist" do
|
42
|
+
expect { browser.dt(id: "no_such_id").class_name }.to raise_unknown_object_exception
|
43
|
+
expect { browser.dt(title: "no_such_title").class_name }.to raise_unknown_object_exception
|
44
|
+
expect { browser.dt(index: 1337).class_name }.to raise_unknown_object_exception
|
45
|
+
expect { browser.dt(xpath: "//dt[@id='no_such_id']").class_name }.to raise_unknown_object_exception
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
describe "#id" do
|
50
|
+
it "returns the id attribute if the element exists" do
|
51
|
+
expect(browser.dt(class: 'industry').id).to eq "experience"
|
52
|
+
end
|
53
|
+
|
54
|
+
it "returns an empty string if the element exists, but the attribute doesn't" do
|
55
|
+
expect(browser.dt(class: 'current-industry').id).to eq ""
|
56
|
+
end
|
57
|
+
|
58
|
+
it "raises UnknownObjectException if the element does not exist" do
|
59
|
+
expect {browser.dt(id: "no_such_id").id }.to raise_unknown_object_exception
|
60
|
+
expect {browser.dt(title: "no_such_id").id }.to raise_unknown_object_exception
|
61
|
+
expect {browser.dt(index: 1337).id }.to raise_unknown_object_exception
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
describe "#title" do
|
66
|
+
it "returns the title of the element" do
|
67
|
+
expect(browser.dt(id: "experience").title).to eq "experience"
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
describe "#text" do
|
72
|
+
it "returns the text of the element" do
|
73
|
+
expect(browser.dt(id: "experience").text).to eq "Experience"
|
74
|
+
end
|
75
|
+
|
76
|
+
it "returns an empty string if the element exists but contains no text" do
|
77
|
+
expect(browser.dt(class: 'noop').text).to eq ""
|
78
|
+
end
|
79
|
+
|
80
|
+
it "raises UnknownObjectException if the element does not exist" do
|
81
|
+
expect { browser.dt(id: "no_such_id").text }.to raise_unknown_object_exception
|
82
|
+
expect { browser.dt(title: "no_such_title").text }.to raise_unknown_object_exception
|
83
|
+
expect { browser.dt(index: 1337).text }.to raise_unknown_object_exception
|
84
|
+
expect { browser.dt(xpath: "//dt[@id='no_such_id']").text }.to raise_unknown_object_exception
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
describe "#respond_to?" do
|
89
|
+
it "returns true for all attribute methods" do
|
90
|
+
expect(browser.dt(index: 0)).to respond_to(:id)
|
91
|
+
expect(browser.dt(index: 0)).to respond_to(:class_name)
|
92
|
+
expect(browser.dt(index: 0)).to respond_to(:style)
|
93
|
+
expect(browser.dt(index: 0)).to respond_to(:text)
|
94
|
+
expect(browser.dt(index: 0)).to respond_to(:title)
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
# Manipulation methods
|
99
|
+
describe "#click" do
|
100
|
+
it "fires events when clicked" do
|
101
|
+
expect(browser.dt(id: 'education').text).to_not eq 'changed'
|
102
|
+
browser.dt(id: 'education').click
|
103
|
+
expect(browser.dt(id: 'education').text).to eq 'changed'
|
104
|
+
end
|
105
|
+
|
106
|
+
it "raises UnknownObjectException if the element does not exist" do
|
107
|
+
expect { browser.dt(id: "no_such_id").click }.to raise_unknown_object_exception
|
108
|
+
expect { browser.dt(title: "no_such_title").click }.to raise_unknown_object_exception
|
109
|
+
expect { browser.dt(index: 1337).click }.to raise_unknown_object_exception
|
110
|
+
expect { browser.dt(xpath: "//dt[@id='no_such_id']").click }.to raise_unknown_object_exception
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
describe "#html" do
|
115
|
+
it "returns the HTML of the element" do
|
116
|
+
html = browser.dt(id: 'name').html
|
117
|
+
expect(html).to match(%r[<div>.*Name.*</div>]mi)
|
118
|
+
expect(html).to_not include('</body>')
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
end
|
@@ -1,42 +1,42 @@
|
|
1
|
-
require "watirspec_helper"
|
2
|
-
|
3
|
-
describe "Dts" do
|
4
|
-
|
5
|
-
before :each do
|
6
|
-
browser.goto(WatirSpec.url_for("definition_lists.html"))
|
7
|
-
end
|
8
|
-
|
9
|
-
describe "with selectors" do
|
10
|
-
it "returns the matching elements" do
|
11
|
-
expect(browser.dts(class: "current-industry").to_a).to eq [browser.dt(class: "current-industry")]
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
describe "#length" do
|
16
|
-
it "returns the number of dts" do
|
17
|
-
expect(browser.dts.length).to eq 11
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
describe "#[]" do
|
22
|
-
it "returns the dt at the given index" do
|
23
|
-
expect(browser.dts[0].id).to eq "experience"
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
describe "#each" do
|
28
|
-
it "iterates through dts correctly" do
|
29
|
-
count = 0
|
30
|
-
|
31
|
-
browser.dts.each_with_index do |d, index|
|
32
|
-
expect(d.id).to eq browser.dt(index: index).id
|
33
|
-
expect(d.class_name).to eq browser.dt(index: index).class_name
|
34
|
-
|
35
|
-
count += 1
|
36
|
-
end
|
37
|
-
|
38
|
-
expect(count).to be > 0
|
39
|
-
end
|
40
|
-
end
|
41
|
-
|
42
|
-
end
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "Dts" do
|
4
|
+
|
5
|
+
before :each do
|
6
|
+
browser.goto(WatirSpec.url_for("definition_lists.html"))
|
7
|
+
end
|
8
|
+
|
9
|
+
describe "with selectors" do
|
10
|
+
it "returns the matching elements" do
|
11
|
+
expect(browser.dts(class: "current-industry").to_a).to eq [browser.dt(class: "current-industry")]
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
describe "#length" do
|
16
|
+
it "returns the number of dts" do
|
17
|
+
expect(browser.dts.length).to eq 11
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "#[]" do
|
22
|
+
it "returns the dt at the given index" do
|
23
|
+
expect(browser.dts[0].id).to eq "experience"
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
describe "#each" do
|
28
|
+
it "iterates through dts correctly" do
|
29
|
+
count = 0
|
30
|
+
|
31
|
+
browser.dts.each_with_index do |d, index|
|
32
|
+
expect(d.id).to eq browser.dt(index: index).id
|
33
|
+
expect(d.class_name).to eq browser.dt(index: index).class_name
|
34
|
+
|
35
|
+
count += 1
|
36
|
+
end
|
37
|
+
|
38
|
+
expect(count).to be > 0
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|
@@ -1,483 +1,483 @@
|
|
1
|
-
require "watirspec_helper"
|
2
|
-
|
3
|
-
describe "Element" do
|
4
|
-
|
5
|
-
before :each do
|
6
|
-
browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
|
7
|
-
end
|
8
|
-
|
9
|
-
describe ".new" do
|
10
|
-
it "finds elements matching the conditions when given a hash of :how => 'what' arguments" do
|
11
|
-
expect(browser.checkbox(name: 'new_user_interests', title: 'Dancing is fun!').value).to eq 'dancing'
|
12
|
-
expect(browser.text_field(class_name: 'name', index: 1).id).to eq 'new_user_last_name'
|
13
|
-
end
|
14
|
-
|
15
|
-
it "raises UnknownObjectException with a sane error message when given a hash of :how => 'what' arguments (non-existing object)" do
|
16
|
-
expect { browser.text_field(index: 100, name: "foo").id }.to raise_unknown_object_exception
|
17
|
-
end
|
18
|
-
|
19
|
-
it "raises ArgumentError if given the wrong number of arguments" do
|
20
|
-
container = double("container").as_null_object
|
21
|
-
expect { Watir::Element.new(container, 1, 2, 3, 4) }.to raise_error(ArgumentError)
|
22
|
-
expect { Watir::Element.new(container, "foo") }.to raise_error(ArgumentError)
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
describe "#eq and #eql?" do
|
27
|
-
before { browser.goto WatirSpec.url_for("definition_lists.html") }
|
28
|
-
|
29
|
-
it "returns true if the two elements point to the same DOM element" do
|
30
|
-
a = browser.dl(id: "experience-list")
|
31
|
-
b = browser.dl
|
32
|
-
|
33
|
-
expect(a).to eq b
|
34
|
-
expect(a).to eql(b)
|
35
|
-
end
|
36
|
-
|
37
|
-
it "returns false if the two elements are not the same" do
|
38
|
-
a = browser.dls[0]
|
39
|
-
b = browser.dls[1]
|
40
|
-
|
41
|
-
expect(a).to_not eq b
|
42
|
-
expect(a).to_not eql(b)
|
43
|
-
end
|
44
|
-
|
45
|
-
it "returns false if the other object is not an Element" do
|
46
|
-
expect(browser.dl).to_not eq 1
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
describe "data-* attributes" do
|
51
|
-
before { browser.goto WatirSpec.url_for("data_attributes.html") }
|
52
|
-
|
53
|
-
it "finds elements by a data-* attribute" do
|
54
|
-
expect(browser.p(data_type: "ruby-library")).to exist
|
55
|
-
end
|
56
|
-
|
57
|
-
it "returns the value of a data-* attribute" do
|
58
|
-
expect(browser.p.data_type).to eq "ruby-library"
|
59
|
-
end
|
60
|
-
end
|
61
|
-
|
62
|
-
describe "aria-* attributes" do
|
63
|
-
before { browser.goto WatirSpec.url_for("aria_attributes.html") }
|
64
|
-
|
65
|
-
it "finds elements by a aria-* attribute" do
|
66
|
-
expect(browser.p(aria_label: "ruby-library")).to exist
|
67
|
-
end
|
68
|
-
|
69
|
-
it "returns the value of a aria-* attribute" do
|
70
|
-
expect(browser.p.aria_label).to eq "ruby-library"
|
71
|
-
end
|
72
|
-
end
|
73
|
-
|
74
|
-
describe "visible text" do
|
75
|
-
it "finds elements by visible text" do
|
76
|
-
browser.goto WatirSpec.url_for('non_control_elements.html')
|
77
|
-
|
78
|
-
expect(browser.link(visible_text: "all visible")).to exist
|
79
|
-
expect(browser.link(visible_text: /all visible/)).to exist
|
80
|
-
expect(browser.link(visible_text: "some visible")).to exist
|
81
|
-
expect(browser.link(visible_text: /some visible/)).to exist
|
82
|
-
expect(browser.link(visible_text: "none visible")).not_to exist
|
83
|
-
expect(browser.link(visible_text: /none visible/)).not_to exist
|
84
|
-
|
85
|
-
expect(browser.link(visible_text: "Link 2", class: "external")).to exist
|
86
|
-
expect(browser.link(visible_text: /Link 2/, class: "external")).to exist
|
87
|
-
|
88
|
-
expect(browser.element(visible_text: "all visible")).to exist
|
89
|
-
expect(browser.element(visible_text: /all visible/)).to exist
|
90
|
-
expect(browser.element(visible_text: "some visible")).to exist
|
91
|
-
expect(browser.element(visible_text: /some visible/)).to exist
|
92
|
-
end
|
93
|
-
end
|
94
|
-
|
95
|
-
describe "finding with unknown tag name" do
|
96
|
-
it "finds an element without arguments" do
|
97
|
-
expect(browser.element).to exist
|
98
|
-
end
|
99
|
-
|
100
|
-
it "finds an element by xpath" do
|
101
|
-
expect(browser.element(xpath: "//*[@for='new_user_first_name']")).to exist
|
102
|
-
end
|
103
|
-
|
104
|
-
it "finds an element by arbitrary attribute" do
|
105
|
-
expect(browser.element(title: "no title")).to exist
|
106
|
-
end
|
107
|
-
|
108
|
-
it "finds several elements by xpath" do
|
109
|
-
expect(browser.elements(xpath: "//a").length).to eq 1
|
110
|
-
end
|
111
|
-
|
112
|
-
it "finds several elements by arbitrary attribute" do
|
113
|
-
expect(browser.elements(id: /^new_user/).length).to eq 33
|
114
|
-
end
|
115
|
-
|
116
|
-
it "finds an element from an element's subtree" do
|
117
|
-
expect(browser.fieldset.element(id: "first_label")).to exist
|
118
|
-
expect(browser.field_set.element(id: "first_label")).to exist
|
119
|
-
end
|
120
|
-
|
121
|
-
it "finds several elements from an element's subtree" do
|
122
|
-
expect(browser.fieldset.elements(xpath: ".//label").length).to eq 21
|
123
|
-
end
|
124
|
-
end
|
125
|
-
|
126
|
-
describe "#to_subtype" do
|
127
|
-
it "returns a CheckBox instance" do
|
128
|
-
e = browser.input(xpath: "//input[@type='checkbox']").to_subtype
|
129
|
-
expect(e).to be_kind_of(Watir::CheckBox)
|
130
|
-
end
|
131
|
-
|
132
|
-
it "returns a Radio instance" do
|
133
|
-
e = browser.input(xpath: "//input[@type='radio']").to_subtype
|
134
|
-
expect(e).to be_kind_of(Watir::Radio)
|
135
|
-
end
|
136
|
-
|
137
|
-
it "returns a Button instance" do
|
138
|
-
es = [
|
139
|
-
browser.input(xpath: "//input[@type='button']").to_subtype,
|
140
|
-
browser.input(xpath: "//input[@type='submit']").to_subtype,
|
141
|
-
browser.input(xpath: "//input[@type='reset']").to_subtype,
|
142
|
-
browser.input(xpath: "//input[@type='image']").to_subtype
|
143
|
-
]
|
144
|
-
|
145
|
-
es.all? { |e| expect(e).to be_kind_of(Watir::Button) }
|
146
|
-
end
|
147
|
-
|
148
|
-
it "returns a TextField instance" do
|
149
|
-
e = browser.input(xpath: "//input[@type='text']").to_subtype
|
150
|
-
expect(e).to be_kind_of(Watir::TextField)
|
151
|
-
end
|
152
|
-
|
153
|
-
it "returns a FileField instance" do
|
154
|
-
e = browser.input(xpath: "//input[@type='file']").to_subtype
|
155
|
-
expect(e).to be_kind_of(Watir::FileField)
|
156
|
-
end
|
157
|
-
|
158
|
-
it "returns a Div instance" do
|
159
|
-
el = browser.element(xpath: "//*[@id='messages']").to_subtype
|
160
|
-
expect(el).to be_kind_of(Watir::Div)
|
161
|
-
end
|
162
|
-
end
|
163
|
-
|
164
|
-
describe "#focus" do
|
165
|
-
it "fires the onfocus event for the given element" do
|
166
|
-
tf = browser.text_field(id: "new_user_occupation")
|
167
|
-
expect(tf.value).to eq "Developer"
|
168
|
-
tf.focus
|
169
|
-
expect(browser.div(id: "onfocus_test").text).to eq "changed by onfocus event"
|
170
|
-
end
|
171
|
-
end
|
172
|
-
|
173
|
-
bug "https://github.com/SeleniumHQ/selenium/issues/2555", %i(remote firefox) do
|
174
|
-
bug "https://github.com/SeleniumHQ/selenium/issues/1795", %i(remote edge) do
|
175
|
-
describe "#focused?" do
|
176
|
-
it "knows if the element is focused" do
|
177
|
-
expect(browser.element(id: 'new_user_first_name')).to be_focused
|
178
|
-
expect(browser.element(id: 'new_user_last_name')).to_not be_focused
|
179
|
-
end
|
180
|
-
end
|
181
|
-
end
|
182
|
-
end
|
183
|
-
|
184
|
-
describe "#fire_event" do
|
185
|
-
it "should fire the given event" do
|
186
|
-
expect(browser.div(id: "onfocus_test").text).to be_empty
|
187
|
-
browser.text_field(id: "new_user_occupation").fire_event('onfocus')
|
188
|
-
expect(browser.div(id: "onfocus_test").text).to eq "changed by onfocus event"
|
189
|
-
end
|
190
|
-
end
|
191
|
-
|
192
|
-
describe "#visible?" do
|
193
|
-
it "returns true if the element is visible" do
|
194
|
-
expect(browser.text_field(id: "new_user_email")).to be_visible
|
195
|
-
end
|
196
|
-
|
197
|
-
it "raises UnknownObjectException exception if the element does not exist" do
|
198
|
-
expect { browser.text_field(id: "no_such_id").visible? }.to raise_unknown_object_exception
|
199
|
-
end
|
200
|
-
|
201
|
-
it "raises UnknownObjectException exception if the element is stale" do
|
202
|
-
wd_element = browser.text_field(id: "new_user_email").wd
|
203
|
-
|
204
|
-
# simulate element going stale during lookup
|
205
|
-
allow(browser.driver).to receive(:find_element).with(:css, '#new_user_email') { wd_element }
|
206
|
-
allow(browser.driver).to receive(:find_elements).with(:css, '#new_user_email') { [wd_element] }
|
207
|
-
allow(browser.driver).to receive(:find_elements).with(:tag_name, 'iframe') { [] }
|
208
|
-
browser.refresh
|
209
|
-
|
210
|
-
expect { browser.text_field(css: '#new_user_email').visible? }.to raise_unknown_object_exception
|
211
|
-
end
|
212
|
-
|
213
|
-
it "returns true if the element has style='visibility: visible' even if parent has style='visibility: hidden'" do
|
214
|
-
expect(browser.div(id: "visible_child")).to be_visible
|
215
|
-
end
|
216
|
-
|
217
|
-
it "returns false if the element is input element where type eq 'hidden'" do
|
218
|
-
expect(browser.hidden(id: "new_user_interests_dolls")).to_not be_visible
|
219
|
-
end
|
220
|
-
|
221
|
-
it "returns false if the element has style='display: none;'" do
|
222
|
-
expect(browser.div(id: 'changed_language')).to_not be_visible
|
223
|
-
end
|
224
|
-
|
225
|
-
it "returns false if the element has style='visibility: hidden;" do
|
226
|
-
expect(browser.div(id: 'wants_newsletter')).to_not be_visible
|
227
|
-
end
|
228
|
-
|
229
|
-
it "returns false if one of the parent elements is hidden" do
|
230
|
-
expect(browser.div(id: 'hidden_parent')).to_not be_visible
|
231
|
-
end
|
232
|
-
end
|
233
|
-
|
234
|
-
describe "#exist?" do
|
235
|
-
context ":class locator" do
|
236
|
-
before do
|
237
|
-
browser.goto(WatirSpec.url_for("class_locator.html"))
|
238
|
-
end
|
239
|
-
|
240
|
-
it "matches when the element has a single class" do
|
241
|
-
e = browser.div(class: "a")
|
242
|
-
expect(e).to exist
|
243
|
-
expect(e.class_name).to eq "a"
|
244
|
-
end
|
245
|
-
|
246
|
-
it "matches when the element has several classes" do
|
247
|
-
e = browser.div(class: "b")
|
248
|
-
expect(e).to exist
|
249
|
-
expect(e.class_name).to eq "a b c"
|
250
|
-
end
|
251
|
-
|
252
|
-
it "does not match only part of the class name" do
|
253
|
-
expect(browser.div(class: "bc")).to_not exist
|
254
|
-
end
|
255
|
-
|
256
|
-
it "matches part of the class name when given a regexp" do
|
257
|
-
expect(browser.div(class: /c/)).to exist
|
258
|
-
end
|
259
|
-
|
260
|
-
context "with multiple classes" do
|
261
|
-
it "matches when the element has a single class" do
|
262
|
-
e = browser.div(class: ["a"])
|
263
|
-
expect(e).to exist
|
264
|
-
expect(e.class_name).to eq "a"
|
265
|
-
end
|
266
|
-
|
267
|
-
it "matches a non-ordered subset" do
|
268
|
-
e = browser.div(class: ["c", "a"])
|
269
|
-
expect(e).to exist
|
270
|
-
expect(e.class_name).to eq "a b c"
|
271
|
-
end
|
272
|
-
|
273
|
-
it "matches one with a negation" do
|
274
|
-
e = browser.div(class: ["!a"])
|
275
|
-
expect(e).to exist
|
276
|
-
expect(e.class_name).to eq "abc"
|
277
|
-
end
|
278
|
-
|
279
|
-
it "matches multiple with a negation" do
|
280
|
-
e = browser.div(class: ["a", "!c", "b"])
|
281
|
-
expect(e).to exist
|
282
|
-
expect(e.class_name).to eq "a b"
|
283
|
-
end
|
284
|
-
end
|
285
|
-
end
|
286
|
-
|
287
|
-
context "attribute presence" do
|
288
|
-
before { browser.goto WatirSpec.url_for("data_attributes.html") }
|
289
|
-
|
290
|
-
it "finds element by attribute presence" do
|
291
|
-
expect(browser.p(data_type: true)).to exist
|
292
|
-
expect(browser.p(class: true)).not_to exist
|
293
|
-
end
|
294
|
-
|
295
|
-
it "finds element by attribute absence" do
|
296
|
-
expect(browser.p(data_type: false)).not_to exist
|
297
|
-
expect(browser.p(class: false)).to exist
|
298
|
-
end
|
299
|
-
end
|
300
|
-
|
301
|
-
it "doesn't raise when called on nested elements" do
|
302
|
-
expect(browser.div(id: 'no_such_div').link(id: 'no_such_id')).to_not exist
|
303
|
-
end
|
304
|
-
|
305
|
-
it "raises if both :xpath and :css are given" do
|
306
|
-
expect { browser.div(xpath: "//div", css: "div").exists? }.to raise_error(ArgumentError)
|
307
|
-
end
|
308
|
-
|
309
|
-
it "doesn't raise when selector has with :xpath has :index" do
|
310
|
-
expect(browser.div(xpath: "//div", index: 1)).to exist
|
311
|
-
end
|
312
|
-
|
313
|
-
it "raises ArgumentError error if selector hash with :xpath has multiple entries" do
|
314
|
-
expect { browser.div(xpath: "//div", class: "foo").exists? }.to raise_error(ArgumentError)
|
315
|
-
end
|
316
|
-
|
317
|
-
it "doesn't raise when selector has with :css has :index" do
|
318
|
-
expect(browser.div(css: "div", index: 1)).to exist
|
319
|
-
end
|
320
|
-
|
321
|
-
it "raises ArgumentError error if selector hash with :css has multiple entries" do
|
322
|
-
expect { browser.div(css: "div", class: "foo").exists? }.to raise_error(ArgumentError)
|
323
|
-
end
|
324
|
-
|
325
|
-
it "finds element by Selenium name locator" do
|
326
|
-
expect(browser.element(name: "new_user_first_name")).to exist
|
327
|
-
expect(browser.element(name: /new_user_first_name/)).to exist
|
328
|
-
end
|
329
|
-
end
|
330
|
-
|
331
|
-
describe '#send_keys' do
|
332
|
-
before(:each) do
|
333
|
-
@c = Selenium::WebDriver::Platform.mac? ? :command : :control
|
334
|
-
browser.goto(WatirSpec.url_for('keylogger.html'))
|
335
|
-
end
|
336
|
-
|
337
|
-
let(:receiver) { browser.text_field(id: 'receiver') }
|
338
|
-
let(:events) { browser.element(id: 'output').ps.size }
|
339
|
-
|
340
|
-
it 'sends keystrokes to the element' do
|
341
|
-
receiver.send_keys 'hello world'
|
342
|
-
expect(receiver.value).to eq 'hello world'
|
343
|
-
expect(events).to eq 11
|
344
|
-
end
|
345
|
-
|
346
|
-
it 'accepts arbitrary list of arguments' do
|
347
|
-
receiver.send_keys 'hello', 'world'
|
348
|
-
expect(receiver.value).to eq 'helloworld'
|
349
|
-
expect(events).to eq 10
|
350
|
-
end
|
351
|
-
|
352
|
-
bug "http://code.google.com/p/chromium/issues/detail?id=93879", :chrome do
|
353
|
-
not_compliant_on :safari, :firefox do
|
354
|
-
it 'performs key combinations' do
|
355
|
-
receiver.send_keys 'foo'
|
356
|
-
receiver.send_keys [@c, 'a']
|
357
|
-
receiver.send_keys :backspace
|
358
|
-
expect(receiver.value).to be_empty
|
359
|
-
expect(events).to eq 6
|
360
|
-
end
|
361
|
-
|
362
|
-
it 'performs arbitrary list of key combinations' do
|
363
|
-
receiver.send_keys 'foo'
|
364
|
-
receiver.send_keys [@c, 'a'], [@c, 'x']
|
365
|
-
expect(receiver.value).to be_empty
|
366
|
-
expect(events).to eq 7
|
367
|
-
end
|
368
|
-
|
369
|
-
it 'supports combination of strings and arrays' do
|
370
|
-
receiver.send_keys 'foo', [@c, 'a'], :backspace
|
371
|
-
expect(receiver.value).to be_empty
|
372
|
-
expect(events).to eq 6
|
373
|
-
end
|
374
|
-
end
|
375
|
-
end
|
376
|
-
end
|
377
|
-
|
378
|
-
describe "#flash" do
|
379
|
-
|
380
|
-
let(:h2) { browser.h2(text: 'Add user') }
|
381
|
-
|
382
|
-
it 'returns the element on which it was called' do
|
383
|
-
expect(h2.flash).to eq h2
|
384
|
-
end
|
385
|
-
end
|
386
|
-
|
387
|
-
describe '#text_content' do
|
388
|
-
it 'returns inner Text code of element' do
|
389
|
-
browser.goto WatirSpec.url_for('non_control_elements.html')
|
390
|
-
expect(browser.div(id: 'shown').text_content).to eq('Not shownNot hidden')
|
391
|
-
end
|
392
|
-
end
|
393
|
-
|
394
|
-
describe '#inner_text' do
|
395
|
-
it 'returns inner HTML code of element' do
|
396
|
-
browser.goto WatirSpec.url_for('non_control_elements.html')
|
397
|
-
div = browser.div(id: 'shown')
|
398
|
-
expect(div.inner_text).to eq('Not hidden')
|
399
|
-
end
|
400
|
-
end
|
401
|
-
|
402
|
-
describe '#inner_html' do
|
403
|
-
it 'returns inner HTML code of element' do
|
404
|
-
browser.goto WatirSpec.url_for('non_control_elements.html')
|
405
|
-
div = browser.div(id: 'shown')
|
406
|
-
expected_text = "<div id=\"hidden\" style=\"display: none;\">Not shown</div><div>Not hidden</div>"
|
407
|
-
expect(div.inner_html).to eq expected_text
|
408
|
-
end
|
409
|
-
end
|
410
|
-
|
411
|
-
describe '#outer_html' do
|
412
|
-
it 'returns outer (inner + element itself) HTML code of element' do
|
413
|
-
browser.goto WatirSpec.url_for('non_control_elements.html')
|
414
|
-
div = browser.div(id: 'shown')
|
415
|
-
expected_text = "<div id=\"shown\"><div id=\"hidden\" style=\"display: none;\">Not shown</div><div>Not hidden</div></div>"
|
416
|
-
expect(div.outer_html).to eq expected_text
|
417
|
-
end
|
418
|
-
end
|
419
|
-
|
420
|
-
not_compliant_on %i(remote firefox) do
|
421
|
-
describe '#scroll_into_view' do
|
422
|
-
it 'scrolls element into view' do
|
423
|
-
el = browser.button(name: 'new_user_image')
|
424
|
-
element_center = el.center['y']
|
425
|
-
|
426
|
-
bottom_viewport_script = 'return window.pageYOffset + window.innerHeight'
|
427
|
-
expect(browser.execute_script bottom_viewport_script).to be < element_center
|
428
|
-
|
429
|
-
expect(el.scroll_into_view).to be_a Selenium::WebDriver::Point
|
430
|
-
|
431
|
-
expect(browser.execute_script bottom_viewport_script).to be > element_center
|
432
|
-
end
|
433
|
-
end
|
434
|
-
end
|
435
|
-
|
436
|
-
describe '#location' do
|
437
|
-
it 'returns coordinates for element location' do
|
438
|
-
location = browser.button(name: 'new_user_image').location
|
439
|
-
|
440
|
-
expect(location).to be_a Selenium::WebDriver::Point
|
441
|
-
expect(location['y']).to be > 0
|
442
|
-
expect(location['x']).to be > 0
|
443
|
-
end
|
444
|
-
end
|
445
|
-
|
446
|
-
describe '#size' do
|
447
|
-
it 'returns size of element' do
|
448
|
-
size = browser.button(name: 'new_user_image').size
|
449
|
-
|
450
|
-
expect(size).to be_a Selenium::WebDriver::Dimension
|
451
|
-
expect(size['width']).to eq 104.0
|
452
|
-
expect(size['height']).to eq 70.0
|
453
|
-
end
|
454
|
-
end
|
455
|
-
|
456
|
-
describe '#height' do
|
457
|
-
it 'returns height of element' do
|
458
|
-
height = browser.button(name: 'new_user_image').height
|
459
|
-
|
460
|
-
expect(height).to eq 70.0
|
461
|
-
end
|
462
|
-
end
|
463
|
-
|
464
|
-
describe '#width' do
|
465
|
-
it 'returns width of element' do
|
466
|
-
width = browser.button(name: 'new_user_image').width
|
467
|
-
|
468
|
-
expect(width).to eq 104.0
|
469
|
-
end
|
470
|
-
|
471
|
-
end
|
472
|
-
|
473
|
-
describe '#center' do
|
474
|
-
it 'returns center of element' do
|
475
|
-
center = browser.button(name: 'new_user_image').center
|
476
|
-
|
477
|
-
expect(center).to be_a Selenium::WebDriver::Point
|
478
|
-
expect(center['y']).to be > 0.0
|
479
|
-
expect(center['x']).to be > 0.0
|
480
|
-
end
|
481
|
-
end
|
482
|
-
|
483
|
-
end
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "Element" do
|
4
|
+
|
5
|
+
before :each do
|
6
|
+
browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
|
7
|
+
end
|
8
|
+
|
9
|
+
describe ".new" do
|
10
|
+
it "finds elements matching the conditions when given a hash of :how => 'what' arguments" do
|
11
|
+
expect(browser.checkbox(name: 'new_user_interests', title: 'Dancing is fun!').value).to eq 'dancing'
|
12
|
+
expect(browser.text_field(class_name: 'name', index: 1).id).to eq 'new_user_last_name'
|
13
|
+
end
|
14
|
+
|
15
|
+
it "raises UnknownObjectException with a sane error message when given a hash of :how => 'what' arguments (non-existing object)" do
|
16
|
+
expect { browser.text_field(index: 100, name: "foo").id }.to raise_unknown_object_exception
|
17
|
+
end
|
18
|
+
|
19
|
+
it "raises ArgumentError if given the wrong number of arguments" do
|
20
|
+
container = double("container").as_null_object
|
21
|
+
expect { Watir::Element.new(container, 1, 2, 3, 4) }.to raise_error(ArgumentError)
|
22
|
+
expect { Watir::Element.new(container, "foo") }.to raise_error(ArgumentError)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
describe "#eq and #eql?" do
|
27
|
+
before { browser.goto WatirSpec.url_for("definition_lists.html") }
|
28
|
+
|
29
|
+
it "returns true if the two elements point to the same DOM element" do
|
30
|
+
a = browser.dl(id: "experience-list")
|
31
|
+
b = browser.dl
|
32
|
+
|
33
|
+
expect(a).to eq b
|
34
|
+
expect(a).to eql(b)
|
35
|
+
end
|
36
|
+
|
37
|
+
it "returns false if the two elements are not the same" do
|
38
|
+
a = browser.dls[0]
|
39
|
+
b = browser.dls[1]
|
40
|
+
|
41
|
+
expect(a).to_not eq b
|
42
|
+
expect(a).to_not eql(b)
|
43
|
+
end
|
44
|
+
|
45
|
+
it "returns false if the other object is not an Element" do
|
46
|
+
expect(browser.dl).to_not eq 1
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe "data-* attributes" do
|
51
|
+
before { browser.goto WatirSpec.url_for("data_attributes.html") }
|
52
|
+
|
53
|
+
it "finds elements by a data-* attribute" do
|
54
|
+
expect(browser.p(data_type: "ruby-library")).to exist
|
55
|
+
end
|
56
|
+
|
57
|
+
it "returns the value of a data-* attribute" do
|
58
|
+
expect(browser.p.data_type).to eq "ruby-library"
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
describe "aria-* attributes" do
|
63
|
+
before { browser.goto WatirSpec.url_for("aria_attributes.html") }
|
64
|
+
|
65
|
+
it "finds elements by a aria-* attribute" do
|
66
|
+
expect(browser.p(aria_label: "ruby-library")).to exist
|
67
|
+
end
|
68
|
+
|
69
|
+
it "returns the value of a aria-* attribute" do
|
70
|
+
expect(browser.p.aria_label).to eq "ruby-library"
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
describe "visible text" do
|
75
|
+
it "finds elements by visible text" do
|
76
|
+
browser.goto WatirSpec.url_for('non_control_elements.html')
|
77
|
+
|
78
|
+
expect(browser.link(visible_text: "all visible")).to exist
|
79
|
+
expect(browser.link(visible_text: /all visible/)).to exist
|
80
|
+
expect(browser.link(visible_text: "some visible")).to exist
|
81
|
+
expect(browser.link(visible_text: /some visible/)).to exist
|
82
|
+
expect(browser.link(visible_text: "none visible")).not_to exist
|
83
|
+
expect(browser.link(visible_text: /none visible/)).not_to exist
|
84
|
+
|
85
|
+
expect(browser.link(visible_text: "Link 2", class: "external")).to exist
|
86
|
+
expect(browser.link(visible_text: /Link 2/, class: "external")).to exist
|
87
|
+
|
88
|
+
expect(browser.element(visible_text: "all visible")).to exist
|
89
|
+
expect(browser.element(visible_text: /all visible/)).to exist
|
90
|
+
expect(browser.element(visible_text: "some visible")).to exist
|
91
|
+
expect(browser.element(visible_text: /some visible/)).to exist
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
describe "finding with unknown tag name" do
|
96
|
+
it "finds an element without arguments" do
|
97
|
+
expect(browser.element).to exist
|
98
|
+
end
|
99
|
+
|
100
|
+
it "finds an element by xpath" do
|
101
|
+
expect(browser.element(xpath: "//*[@for='new_user_first_name']")).to exist
|
102
|
+
end
|
103
|
+
|
104
|
+
it "finds an element by arbitrary attribute" do
|
105
|
+
expect(browser.element(title: "no title")).to exist
|
106
|
+
end
|
107
|
+
|
108
|
+
it "finds several elements by xpath" do
|
109
|
+
expect(browser.elements(xpath: "//a").length).to eq 1
|
110
|
+
end
|
111
|
+
|
112
|
+
it "finds several elements by arbitrary attribute" do
|
113
|
+
expect(browser.elements(id: /^new_user/).length).to eq 33
|
114
|
+
end
|
115
|
+
|
116
|
+
it "finds an element from an element's subtree" do
|
117
|
+
expect(browser.fieldset.element(id: "first_label")).to exist
|
118
|
+
expect(browser.field_set.element(id: "first_label")).to exist
|
119
|
+
end
|
120
|
+
|
121
|
+
it "finds several elements from an element's subtree" do
|
122
|
+
expect(browser.fieldset.elements(xpath: ".//label").length).to eq 21
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
describe "#to_subtype" do
|
127
|
+
it "returns a CheckBox instance" do
|
128
|
+
e = browser.input(xpath: "//input[@type='checkbox']").to_subtype
|
129
|
+
expect(e).to be_kind_of(Watir::CheckBox)
|
130
|
+
end
|
131
|
+
|
132
|
+
it "returns a Radio instance" do
|
133
|
+
e = browser.input(xpath: "//input[@type='radio']").to_subtype
|
134
|
+
expect(e).to be_kind_of(Watir::Radio)
|
135
|
+
end
|
136
|
+
|
137
|
+
it "returns a Button instance" do
|
138
|
+
es = [
|
139
|
+
browser.input(xpath: "//input[@type='button']").to_subtype,
|
140
|
+
browser.input(xpath: "//input[@type='submit']").to_subtype,
|
141
|
+
browser.input(xpath: "//input[@type='reset']").to_subtype,
|
142
|
+
browser.input(xpath: "//input[@type='image']").to_subtype
|
143
|
+
]
|
144
|
+
|
145
|
+
es.all? { |e| expect(e).to be_kind_of(Watir::Button) }
|
146
|
+
end
|
147
|
+
|
148
|
+
it "returns a TextField instance" do
|
149
|
+
e = browser.input(xpath: "//input[@type='text']").to_subtype
|
150
|
+
expect(e).to be_kind_of(Watir::TextField)
|
151
|
+
end
|
152
|
+
|
153
|
+
it "returns a FileField instance" do
|
154
|
+
e = browser.input(xpath: "//input[@type='file']").to_subtype
|
155
|
+
expect(e).to be_kind_of(Watir::FileField)
|
156
|
+
end
|
157
|
+
|
158
|
+
it "returns a Div instance" do
|
159
|
+
el = browser.element(xpath: "//*[@id='messages']").to_subtype
|
160
|
+
expect(el).to be_kind_of(Watir::Div)
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
describe "#focus" do
|
165
|
+
it "fires the onfocus event for the given element" do
|
166
|
+
tf = browser.text_field(id: "new_user_occupation")
|
167
|
+
expect(tf.value).to eq "Developer"
|
168
|
+
tf.focus
|
169
|
+
expect(browser.div(id: "onfocus_test").text).to eq "changed by onfocus event"
|
170
|
+
end
|
171
|
+
end
|
172
|
+
|
173
|
+
bug "https://github.com/SeleniumHQ/selenium/issues/2555", %i(remote firefox) do
|
174
|
+
bug "https://github.com/SeleniumHQ/selenium/issues/1795", %i(remote edge) do
|
175
|
+
describe "#focused?" do
|
176
|
+
it "knows if the element is focused" do
|
177
|
+
expect(browser.element(id: 'new_user_first_name')).to be_focused
|
178
|
+
expect(browser.element(id: 'new_user_last_name')).to_not be_focused
|
179
|
+
end
|
180
|
+
end
|
181
|
+
end
|
182
|
+
end
|
183
|
+
|
184
|
+
describe "#fire_event" do
|
185
|
+
it "should fire the given event" do
|
186
|
+
expect(browser.div(id: "onfocus_test").text).to be_empty
|
187
|
+
browser.text_field(id: "new_user_occupation").fire_event('onfocus')
|
188
|
+
expect(browser.div(id: "onfocus_test").text).to eq "changed by onfocus event"
|
189
|
+
end
|
190
|
+
end
|
191
|
+
|
192
|
+
describe "#visible?" do
|
193
|
+
it "returns true if the element is visible" do
|
194
|
+
expect(browser.text_field(id: "new_user_email")).to be_visible
|
195
|
+
end
|
196
|
+
|
197
|
+
it "raises UnknownObjectException exception if the element does not exist" do
|
198
|
+
expect { browser.text_field(id: "no_such_id").visible? }.to raise_unknown_object_exception
|
199
|
+
end
|
200
|
+
|
201
|
+
it "raises UnknownObjectException exception if the element is stale" do
|
202
|
+
wd_element = browser.text_field(id: "new_user_email").wd
|
203
|
+
|
204
|
+
# simulate element going stale during lookup
|
205
|
+
allow(browser.driver).to receive(:find_element).with(:css, '#new_user_email') { wd_element }
|
206
|
+
allow(browser.driver).to receive(:find_elements).with(:css, '#new_user_email') { [wd_element] }
|
207
|
+
allow(browser.driver).to receive(:find_elements).with(:tag_name, 'iframe') { [] }
|
208
|
+
browser.refresh
|
209
|
+
|
210
|
+
expect { browser.text_field(css: '#new_user_email').visible? }.to raise_unknown_object_exception
|
211
|
+
end
|
212
|
+
|
213
|
+
it "returns true if the element has style='visibility: visible' even if parent has style='visibility: hidden'" do
|
214
|
+
expect(browser.div(id: "visible_child")).to be_visible
|
215
|
+
end
|
216
|
+
|
217
|
+
it "returns false if the element is input element where type eq 'hidden'" do
|
218
|
+
expect(browser.hidden(id: "new_user_interests_dolls")).to_not be_visible
|
219
|
+
end
|
220
|
+
|
221
|
+
it "returns false if the element has style='display: none;'" do
|
222
|
+
expect(browser.div(id: 'changed_language')).to_not be_visible
|
223
|
+
end
|
224
|
+
|
225
|
+
it "returns false if the element has style='visibility: hidden;" do
|
226
|
+
expect(browser.div(id: 'wants_newsletter')).to_not be_visible
|
227
|
+
end
|
228
|
+
|
229
|
+
it "returns false if one of the parent elements is hidden" do
|
230
|
+
expect(browser.div(id: 'hidden_parent')).to_not be_visible
|
231
|
+
end
|
232
|
+
end
|
233
|
+
|
234
|
+
describe "#exist?" do
|
235
|
+
context ":class locator" do
|
236
|
+
before do
|
237
|
+
browser.goto(WatirSpec.url_for("class_locator.html"))
|
238
|
+
end
|
239
|
+
|
240
|
+
it "matches when the element has a single class" do
|
241
|
+
e = browser.div(class: "a")
|
242
|
+
expect(e).to exist
|
243
|
+
expect(e.class_name).to eq "a"
|
244
|
+
end
|
245
|
+
|
246
|
+
it "matches when the element has several classes" do
|
247
|
+
e = browser.div(class: "b")
|
248
|
+
expect(e).to exist
|
249
|
+
expect(e.class_name).to eq "a b c"
|
250
|
+
end
|
251
|
+
|
252
|
+
it "does not match only part of the class name" do
|
253
|
+
expect(browser.div(class: "bc")).to_not exist
|
254
|
+
end
|
255
|
+
|
256
|
+
it "matches part of the class name when given a regexp" do
|
257
|
+
expect(browser.div(class: /c/)).to exist
|
258
|
+
end
|
259
|
+
|
260
|
+
context "with multiple classes" do
|
261
|
+
it "matches when the element has a single class" do
|
262
|
+
e = browser.div(class: ["a"])
|
263
|
+
expect(e).to exist
|
264
|
+
expect(e.class_name).to eq "a"
|
265
|
+
end
|
266
|
+
|
267
|
+
it "matches a non-ordered subset" do
|
268
|
+
e = browser.div(class: ["c", "a"])
|
269
|
+
expect(e).to exist
|
270
|
+
expect(e.class_name).to eq "a b c"
|
271
|
+
end
|
272
|
+
|
273
|
+
it "matches one with a negation" do
|
274
|
+
e = browser.div(class: ["!a"])
|
275
|
+
expect(e).to exist
|
276
|
+
expect(e.class_name).to eq "abc"
|
277
|
+
end
|
278
|
+
|
279
|
+
it "matches multiple with a negation" do
|
280
|
+
e = browser.div(class: ["a", "!c", "b"])
|
281
|
+
expect(e).to exist
|
282
|
+
expect(e.class_name).to eq "a b"
|
283
|
+
end
|
284
|
+
end
|
285
|
+
end
|
286
|
+
|
287
|
+
context "attribute presence" do
|
288
|
+
before { browser.goto WatirSpec.url_for("data_attributes.html") }
|
289
|
+
|
290
|
+
it "finds element by attribute presence" do
|
291
|
+
expect(browser.p(data_type: true)).to exist
|
292
|
+
expect(browser.p(class: true)).not_to exist
|
293
|
+
end
|
294
|
+
|
295
|
+
it "finds element by attribute absence" do
|
296
|
+
expect(browser.p(data_type: false)).not_to exist
|
297
|
+
expect(browser.p(class: false)).to exist
|
298
|
+
end
|
299
|
+
end
|
300
|
+
|
301
|
+
it "doesn't raise when called on nested elements" do
|
302
|
+
expect(browser.div(id: 'no_such_div').link(id: 'no_such_id')).to_not exist
|
303
|
+
end
|
304
|
+
|
305
|
+
it "raises if both :xpath and :css are given" do
|
306
|
+
expect { browser.div(xpath: "//div", css: "div").exists? }.to raise_error(ArgumentError)
|
307
|
+
end
|
308
|
+
|
309
|
+
it "doesn't raise when selector has with :xpath has :index" do
|
310
|
+
expect(browser.div(xpath: "//div", index: 1)).to exist
|
311
|
+
end
|
312
|
+
|
313
|
+
it "raises ArgumentError error if selector hash with :xpath has multiple entries" do
|
314
|
+
expect { browser.div(xpath: "//div", class: "foo").exists? }.to raise_error(ArgumentError)
|
315
|
+
end
|
316
|
+
|
317
|
+
it "doesn't raise when selector has with :css has :index" do
|
318
|
+
expect(browser.div(css: "div", index: 1)).to exist
|
319
|
+
end
|
320
|
+
|
321
|
+
it "raises ArgumentError error if selector hash with :css has multiple entries" do
|
322
|
+
expect { browser.div(css: "div", class: "foo").exists? }.to raise_error(ArgumentError)
|
323
|
+
end
|
324
|
+
|
325
|
+
it "finds element by Selenium name locator" do
|
326
|
+
expect(browser.element(name: "new_user_first_name")).to exist
|
327
|
+
expect(browser.element(name: /new_user_first_name/)).to exist
|
328
|
+
end
|
329
|
+
end
|
330
|
+
|
331
|
+
describe '#send_keys' do
|
332
|
+
before(:each) do
|
333
|
+
@c = Selenium::WebDriver::Platform.mac? ? :command : :control
|
334
|
+
browser.goto(WatirSpec.url_for('keylogger.html'))
|
335
|
+
end
|
336
|
+
|
337
|
+
let(:receiver) { browser.text_field(id: 'receiver') }
|
338
|
+
let(:events) { browser.element(id: 'output').ps.size }
|
339
|
+
|
340
|
+
it 'sends keystrokes to the element' do
|
341
|
+
receiver.send_keys 'hello world'
|
342
|
+
expect(receiver.value).to eq 'hello world'
|
343
|
+
expect(events).to eq 11
|
344
|
+
end
|
345
|
+
|
346
|
+
it 'accepts arbitrary list of arguments' do
|
347
|
+
receiver.send_keys 'hello', 'world'
|
348
|
+
expect(receiver.value).to eq 'helloworld'
|
349
|
+
expect(events).to eq 10
|
350
|
+
end
|
351
|
+
|
352
|
+
bug "http://code.google.com/p/chromium/issues/detail?id=93879", :chrome do
|
353
|
+
not_compliant_on :safari, :firefox do
|
354
|
+
it 'performs key combinations' do
|
355
|
+
receiver.send_keys 'foo'
|
356
|
+
receiver.send_keys [@c, 'a']
|
357
|
+
receiver.send_keys :backspace
|
358
|
+
expect(receiver.value).to be_empty
|
359
|
+
expect(events).to eq 6
|
360
|
+
end
|
361
|
+
|
362
|
+
it 'performs arbitrary list of key combinations' do
|
363
|
+
receiver.send_keys 'foo'
|
364
|
+
receiver.send_keys [@c, 'a'], [@c, 'x']
|
365
|
+
expect(receiver.value).to be_empty
|
366
|
+
expect(events).to eq 7
|
367
|
+
end
|
368
|
+
|
369
|
+
it 'supports combination of strings and arrays' do
|
370
|
+
receiver.send_keys 'foo', [@c, 'a'], :backspace
|
371
|
+
expect(receiver.value).to be_empty
|
372
|
+
expect(events).to eq 6
|
373
|
+
end
|
374
|
+
end
|
375
|
+
end
|
376
|
+
end
|
377
|
+
|
378
|
+
describe "#flash" do
|
379
|
+
|
380
|
+
let(:h2) { browser.h2(text: 'Add user') }
|
381
|
+
|
382
|
+
it 'returns the element on which it was called' do
|
383
|
+
expect(h2.flash).to eq h2
|
384
|
+
end
|
385
|
+
end
|
386
|
+
|
387
|
+
describe '#text_content' do
|
388
|
+
it 'returns inner Text code of element' do
|
389
|
+
browser.goto WatirSpec.url_for('non_control_elements.html')
|
390
|
+
expect(browser.div(id: 'shown').text_content).to eq('Not shownNot hidden')
|
391
|
+
end
|
392
|
+
end
|
393
|
+
|
394
|
+
describe '#inner_text' do
|
395
|
+
it 'returns inner HTML code of element' do
|
396
|
+
browser.goto WatirSpec.url_for('non_control_elements.html')
|
397
|
+
div = browser.div(id: 'shown')
|
398
|
+
expect(div.inner_text).to eq('Not hidden')
|
399
|
+
end
|
400
|
+
end
|
401
|
+
|
402
|
+
describe '#inner_html' do
|
403
|
+
it 'returns inner HTML code of element' do
|
404
|
+
browser.goto WatirSpec.url_for('non_control_elements.html')
|
405
|
+
div = browser.div(id: 'shown')
|
406
|
+
expected_text = "<div id=\"hidden\" style=\"display: none;\">Not shown</div><div>Not hidden</div>"
|
407
|
+
expect(div.inner_html).to eq expected_text
|
408
|
+
end
|
409
|
+
end
|
410
|
+
|
411
|
+
describe '#outer_html' do
|
412
|
+
it 'returns outer (inner + element itself) HTML code of element' do
|
413
|
+
browser.goto WatirSpec.url_for('non_control_elements.html')
|
414
|
+
div = browser.div(id: 'shown')
|
415
|
+
expected_text = "<div id=\"shown\"><div id=\"hidden\" style=\"display: none;\">Not shown</div><div>Not hidden</div></div>"
|
416
|
+
expect(div.outer_html).to eq expected_text
|
417
|
+
end
|
418
|
+
end
|
419
|
+
|
420
|
+
not_compliant_on %i(remote firefox) do
|
421
|
+
describe '#scroll_into_view' do
|
422
|
+
it 'scrolls element into view' do
|
423
|
+
el = browser.button(name: 'new_user_image')
|
424
|
+
element_center = el.center['y']
|
425
|
+
|
426
|
+
bottom_viewport_script = 'return window.pageYOffset + window.innerHeight'
|
427
|
+
expect(browser.execute_script bottom_viewport_script).to be < element_center
|
428
|
+
|
429
|
+
expect(el.scroll_into_view).to be_a Selenium::WebDriver::Point
|
430
|
+
|
431
|
+
expect(browser.execute_script bottom_viewport_script).to be > element_center
|
432
|
+
end
|
433
|
+
end
|
434
|
+
end
|
435
|
+
|
436
|
+
describe '#location' do
|
437
|
+
it 'returns coordinates for element location' do
|
438
|
+
location = browser.button(name: 'new_user_image').location
|
439
|
+
|
440
|
+
expect(location).to be_a Selenium::WebDriver::Point
|
441
|
+
expect(location['y']).to be > 0
|
442
|
+
expect(location['x']).to be > 0
|
443
|
+
end
|
444
|
+
end
|
445
|
+
|
446
|
+
describe '#size' do
|
447
|
+
it 'returns size of element' do
|
448
|
+
size = browser.button(name: 'new_user_image').size
|
449
|
+
|
450
|
+
expect(size).to be_a Selenium::WebDriver::Dimension
|
451
|
+
expect(size['width']).to eq 104.0
|
452
|
+
expect(size['height']).to eq 70.0
|
453
|
+
end
|
454
|
+
end
|
455
|
+
|
456
|
+
describe '#height' do
|
457
|
+
it 'returns height of element' do
|
458
|
+
height = browser.button(name: 'new_user_image').height
|
459
|
+
|
460
|
+
expect(height).to eq 70.0
|
461
|
+
end
|
462
|
+
end
|
463
|
+
|
464
|
+
describe '#width' do
|
465
|
+
it 'returns width of element' do
|
466
|
+
width = browser.button(name: 'new_user_image').width
|
467
|
+
|
468
|
+
expect(width).to eq 104.0
|
469
|
+
end
|
470
|
+
|
471
|
+
end
|
472
|
+
|
473
|
+
describe '#center' do
|
474
|
+
it 'returns center of element' do
|
475
|
+
center = browser.button(name: 'new_user_image').center
|
476
|
+
|
477
|
+
expect(center).to be_a Selenium::WebDriver::Point
|
478
|
+
expect(center['y']).to be > 0.0
|
479
|
+
expect(center['x']).to be > 0.0
|
480
|
+
end
|
481
|
+
end
|
482
|
+
|
483
|
+
end
|