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,43 +1,43 @@
|
|
1
|
-
require "watirspec_helper"
|
2
|
-
|
3
|
-
describe "Strongs" do
|
4
|
-
|
5
|
-
before :each do
|
6
|
-
browser.goto(WatirSpec.url_for("non_control_elements.html"))
|
7
|
-
end
|
8
|
-
|
9
|
-
describe "with selectors" do
|
10
|
-
it "returns the matching elements" do
|
11
|
-
expect(browser.strongs(class: "descartes").to_a).to eq [browser.strong(class: "descartes")]
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
describe "#length" do
|
16
|
-
it "returns the number of divs" do
|
17
|
-
expect(browser.strongs.length).to eq 2
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
describe "#[]" do
|
22
|
-
it "returns the div at the given index" do
|
23
|
-
expect(browser.strongs[0].id).to eq "descartes"
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
describe "#each" do
|
28
|
-
it "iterates through divs correctly" do
|
29
|
-
count = 0
|
30
|
-
|
31
|
-
browser.strongs.each_with_index do |s, index|
|
32
|
-
strong = browser.strong(index: index)
|
33
|
-
expect(s.id).to eq strong.id
|
34
|
-
expect(s.class_name).to eq strong.class_name
|
35
|
-
|
36
|
-
count += 1
|
37
|
-
end
|
38
|
-
|
39
|
-
expect(count).to be > 0
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
end
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "Strongs" do
|
4
|
+
|
5
|
+
before :each do
|
6
|
+
browser.goto(WatirSpec.url_for("non_control_elements.html"))
|
7
|
+
end
|
8
|
+
|
9
|
+
describe "with selectors" do
|
10
|
+
it "returns the matching elements" do
|
11
|
+
expect(browser.strongs(class: "descartes").to_a).to eq [browser.strong(class: "descartes")]
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
describe "#length" do
|
16
|
+
it "returns the number of divs" do
|
17
|
+
expect(browser.strongs.length).to eq 2
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "#[]" do
|
22
|
+
it "returns the div at the given index" do
|
23
|
+
expect(browser.strongs[0].id).to eq "descartes"
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
describe "#each" do
|
28
|
+
it "iterates through divs correctly" do
|
29
|
+
count = 0
|
30
|
+
|
31
|
+
browser.strongs.each_with_index do |s, index|
|
32
|
+
strong = browser.strong(index: index)
|
33
|
+
expect(s.id).to eq strong.id
|
34
|
+
expect(s.class_name).to eq strong.class_name
|
35
|
+
|
36
|
+
count += 1
|
37
|
+
end
|
38
|
+
|
39
|
+
expect(count).to be > 0
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
@@ -1,51 +1,51 @@
|
|
1
|
-
require "watirspec_helper"
|
2
|
-
|
3
|
-
describe "Table" do
|
4
|
-
|
5
|
-
before :each do
|
6
|
-
browser.goto(WatirSpec.url_for("nested_tables.html"))
|
7
|
-
end
|
8
|
-
|
9
|
-
# not a selenium bug - IE seems unable to deal with the invalid nesting
|
10
|
-
not_compliant_on :internet_explorer do
|
11
|
-
it "returns the correct number of rows under a table" do
|
12
|
-
tables = browser.div(id: "table-rows-test").tables(id: /^tbl/)
|
13
|
-
expect(tables.length).to be > 0
|
14
|
-
|
15
|
-
tables.each do |table|
|
16
|
-
expected = Integer(table.data_row_count)
|
17
|
-
actual = table.rows.length
|
18
|
-
browser_count = Integer(table.data_browser_count)
|
19
|
-
|
20
|
-
expect(actual).to eql(expected), "expected #{expected} rows, got #{actual} for table id=#{table.id}, browser reported: #{browser_count}"
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
it "returns the correct number of cells under a row" do
|
25
|
-
rows = browser.div(id: "row-cells-test").trs(id: /^row/)
|
26
|
-
expect(rows.length).to be > 0
|
27
|
-
|
28
|
-
rows.each do |row|
|
29
|
-
expected = Integer(row.data_cell_count)
|
30
|
-
actual = row.cells.length
|
31
|
-
browser_count = Integer(row.data_browser_count)
|
32
|
-
|
33
|
-
expect(actual).to eql(expected), "expected #{expected} cells, got #{actual} for row id=#{row.id}, browser reported: #{browser_count}"
|
34
|
-
end
|
35
|
-
end
|
36
|
-
|
37
|
-
it "returns the correct number of rows under a table section" do
|
38
|
-
tbodies = browser.table(id: "tbody-rows-test").tbodys(id: /^body/)
|
39
|
-
expect(tbodies.length).to be > 0
|
40
|
-
|
41
|
-
tbodies.each do |tbody|
|
42
|
-
expected = Integer(tbody.data_rows_count)
|
43
|
-
actual = tbody.rows.count
|
44
|
-
browser_count = Integer(tbody.data_browser_count)
|
45
|
-
|
46
|
-
expect(actual).to eql(expected), "expected #{expected} rows, got #{actual} for tbody id=#{tbody.id}, browser reported: #{browser_count}"
|
47
|
-
end
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
end
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "Table" do
|
4
|
+
|
5
|
+
before :each do
|
6
|
+
browser.goto(WatirSpec.url_for("nested_tables.html"))
|
7
|
+
end
|
8
|
+
|
9
|
+
# not a selenium bug - IE seems unable to deal with the invalid nesting
|
10
|
+
not_compliant_on :internet_explorer do
|
11
|
+
it "returns the correct number of rows under a table" do
|
12
|
+
tables = browser.div(id: "table-rows-test").tables(id: /^tbl/)
|
13
|
+
expect(tables.length).to be > 0
|
14
|
+
|
15
|
+
tables.each do |table|
|
16
|
+
expected = Integer(table.data_row_count)
|
17
|
+
actual = table.rows.length
|
18
|
+
browser_count = Integer(table.data_browser_count)
|
19
|
+
|
20
|
+
expect(actual).to eql(expected), "expected #{expected} rows, got #{actual} for table id=#{table.id}, browser reported: #{browser_count}"
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
it "returns the correct number of cells under a row" do
|
25
|
+
rows = browser.div(id: "row-cells-test").trs(id: /^row/)
|
26
|
+
expect(rows.length).to be > 0
|
27
|
+
|
28
|
+
rows.each do |row|
|
29
|
+
expected = Integer(row.data_cell_count)
|
30
|
+
actual = row.cells.length
|
31
|
+
browser_count = Integer(row.data_browser_count)
|
32
|
+
|
33
|
+
expect(actual).to eql(expected), "expected #{expected} cells, got #{actual} for row id=#{row.id}, browser reported: #{browser_count}"
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
it "returns the correct number of rows under a table section" do
|
38
|
+
tbodies = browser.table(id: "tbody-rows-test").tbodys(id: /^body/)
|
39
|
+
expect(tbodies.length).to be > 0
|
40
|
+
|
41
|
+
tbodies.each do |tbody|
|
42
|
+
expected = Integer(tbody.data_rows_count)
|
43
|
+
actual = tbody.rows.count
|
44
|
+
browser_count = Integer(tbody.data_browser_count)
|
45
|
+
|
46
|
+
expect(actual).to eql(expected), "expected #{expected} rows, got #{actual} for tbody id=#{tbody.id}, browser reported: #{browser_count}"
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
end
|
@@ -1,156 +1,156 @@
|
|
1
|
-
require "watirspec_helper"
|
2
|
-
|
3
|
-
describe "Table" do
|
4
|
-
|
5
|
-
before :each do
|
6
|
-
browser.goto(WatirSpec.url_for("tables.html"))
|
7
|
-
end
|
8
|
-
|
9
|
-
# Exists
|
10
|
-
describe "#exists?" do
|
11
|
-
it "returns true if the table exists" do
|
12
|
-
expect(browser.table(id: 'axis_example')).to exist
|
13
|
-
expect(browser.table(id: /axis_example/)).to exist
|
14
|
-
expect(browser.table(index: 0)).to exist
|
15
|
-
expect(browser.table(xpath: "//table[@id='axis_example']")).to exist
|
16
|
-
end
|
17
|
-
|
18
|
-
it "returns the first table if given no args" do
|
19
|
-
expect(browser.table).to exist
|
20
|
-
end
|
21
|
-
|
22
|
-
it "returns false if the table does not exist" do
|
23
|
-
expect(browser.table(id: 'no_such_id')).to_not exist
|
24
|
-
expect(browser.table(id: /no_such_id/)).to_not exist
|
25
|
-
expect(browser.table(index: 1337)).to_not exist
|
26
|
-
expect(browser.table(xpath: "//table[@id='no_such_id']")).to_not exist
|
27
|
-
end
|
28
|
-
|
29
|
-
it "checks the tag name when locating by xpath" do
|
30
|
-
expect(browser.table(xpath: "//table//td")).to_not exist
|
31
|
-
expect(browser.table(xpath: "//table")).to exist
|
32
|
-
end
|
33
|
-
|
34
|
-
it "raises TypeError when 'what' argument is invalid" do
|
35
|
-
expect { browser.table(id: 3.14).exists? }.to raise_error(TypeError)
|
36
|
-
end
|
37
|
-
end
|
38
|
-
|
39
|
-
# Other
|
40
|
-
bug "Safari does not strip text", :safari do
|
41
|
-
describe "#strings" do
|
42
|
-
it "returns a two-dimensional array representation of the table" do
|
43
|
-
expect(browser.table(id: 'inner').strings).to eq [
|
44
|
-
["Table 2, Row 1, Cell 1",
|
45
|
-
"Table 2, Row 1, Cell 2"]
|
46
|
-
]
|
47
|
-
expect(browser.table(id: 'outer').strings).to eq [
|
48
|
-
["Table 1, Row 1, Cell 1", "Table 1, Row 1, Cell 2"],
|
49
|
-
["Table 1, Row 2, Cell 1", "Table 1, Row 2, Cell 2\nTable 2, Row 1, Cell 1 Table 2, Row 1, Cell 2"],
|
50
|
-
["Table 1, Row 3, Cell 1", "Table 1, Row 3, Cell 2"]
|
51
|
-
]
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
|
-
describe "#headers" do
|
57
|
-
it "returns the first row of a table as the header row" do
|
58
|
-
headers = browser.table(id: "axis_example").headers
|
59
|
-
expect(headers).to be_a Watir::TableHeaderCellCollection
|
60
|
-
expect(headers.size).to eq 4
|
61
|
-
end
|
62
|
-
end
|
63
|
-
|
64
|
-
describe "#hashes" do
|
65
|
-
it "returns an Array of Hashes for the common table usage" do
|
66
|
-
expect(browser.table(id: "axis_example").hashes).to eq [
|
67
|
-
{ "" => "March 2008", "Before income tax" => "", "Income tax" => "", "After income tax" => "" },
|
68
|
-
{ "" => "Gregory House", "Before income tax" => "5 934", "Income tax" => "1 347", "After income tax" => "4 587" },
|
69
|
-
{ "" => "Hugh Laurie", "Before income tax" => "6 300", "Income tax" => "1 479", "After income tax" => "4 821" },
|
70
|
-
{ "" => "April 2008", "Before income tax" => "", "Income tax" => "", "After income tax" => "" },
|
71
|
-
{ "" => "Gregory House", "Before income tax" => "5 863", "Income tax" => "1 331", "After income tax" => "4 532" },
|
72
|
-
{ "" => "Hugh Laurie", "Before income tax" => "6 252", "Income tax" => "1 420", "After income tax" => "4 832" },
|
73
|
-
{ "" => "Sum", "Before income tax" => "24 349", "Income tax" => "5 577", "After income tax" => "18 722"},
|
74
|
-
]
|
75
|
-
end
|
76
|
-
|
77
|
-
it "raises an error if the table could not be parsed" do
|
78
|
-
browser.goto(WatirSpec.url_for("uneven_table.html"))
|
79
|
-
|
80
|
-
expect {
|
81
|
-
browser.table.hashes
|
82
|
-
}.to raise_error("row at index 0 has 2 cells, while header row has 3")
|
83
|
-
end
|
84
|
-
end
|
85
|
-
|
86
|
-
describe "#click" do
|
87
|
-
it "fires the table's onclick event" do
|
88
|
-
browser.table(id: 'inner').click
|
89
|
-
expect(messages).to include('table')
|
90
|
-
end
|
91
|
-
end
|
92
|
-
|
93
|
-
describe "#[]" do
|
94
|
-
it "returns the nth child row" do
|
95
|
-
expect(browser.table(id: 'outer')[0].id).to eq "outer_first"
|
96
|
-
expect(browser.table(id: 'inner')[0].id).to eq "inner_first"
|
97
|
-
expect(browser.table(id: 'outer')[2].id).to eq "outer_last"
|
98
|
-
end
|
99
|
-
end
|
100
|
-
|
101
|
-
describe "#row" do
|
102
|
-
let(:table) { browser.table(id: 'outer') }
|
103
|
-
|
104
|
-
it "finds rows belonging to this table" do
|
105
|
-
expect(table.row(id: "outer_last")).to exist
|
106
|
-
msg = /:text locator with RegExp values to find elements based on only visible text is deprecated. Use :visible_text instead./
|
107
|
-
expect { expect(table.row(text: /Table 1, Row 1, Cell 1/)).to exist }.to output(msg).to_stdout_from_any_process
|
108
|
-
end
|
109
|
-
|
110
|
-
it "does not find rows from a nested table" do
|
111
|
-
expect(table.row(id: "inner_first")).to_not exist
|
112
|
-
msg = /:text locator with RegExp values to find elements based on only visible text is deprecated. Use :visible_text instead./
|
113
|
-
expect do
|
114
|
-
expect(table.row(text: /\ATable 2, Row 1, Cell 1 Table 2, Row 1, Cell 2\z/)).to_not exist
|
115
|
-
end.to output(msg).to_stdout_from_any_process
|
116
|
-
end
|
117
|
-
end
|
118
|
-
|
119
|
-
describe "#rows" do
|
120
|
-
it "finds the correct number of rows (excluding nested tables)" do
|
121
|
-
expect(browser.table(id: 'inner').rows.length).to eq 1
|
122
|
-
expect(browser.table(id: 'outer').rows.length).to eq 3
|
123
|
-
end
|
124
|
-
|
125
|
-
it "finds rows matching the selector" do
|
126
|
-
rows = browser.table(id: 'outer').rows(id: /first|last/)
|
127
|
-
|
128
|
-
expect(rows.first.id).to eq "outer_first"
|
129
|
-
expect(rows.last.id).to eq "outer_last"
|
130
|
-
end
|
131
|
-
|
132
|
-
it "does not find rows from a nested table" do
|
133
|
-
expect(browser.table(id: "outer").rows(id: "t2_r1_c1").size).to eq 0
|
134
|
-
end
|
135
|
-
end
|
136
|
-
|
137
|
-
describe "#tbody" do
|
138
|
-
it "returns the correct instance of TableSection" do
|
139
|
-
body = browser.table(index: 0).tbody(id: 'first')
|
140
|
-
expect(body).to be_instance_of(Watir::TableSection)
|
141
|
-
expect(body[0][0].text).to eq "March 2008"
|
142
|
-
end
|
143
|
-
end
|
144
|
-
|
145
|
-
describe "#tbodys" do
|
146
|
-
it "returns the correct instance of TableSection" do
|
147
|
-
bodies = browser.table(index: 0).tbodys
|
148
|
-
|
149
|
-
expect(bodies).to be_instance_of(Watir::TableSectionCollection)
|
150
|
-
|
151
|
-
expect(bodies[0].id).to eq "first"
|
152
|
-
expect(bodies[1].id).to eq "second"
|
153
|
-
end
|
154
|
-
end
|
155
|
-
|
156
|
-
end
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "Table" do
|
4
|
+
|
5
|
+
before :each do
|
6
|
+
browser.goto(WatirSpec.url_for("tables.html"))
|
7
|
+
end
|
8
|
+
|
9
|
+
# Exists
|
10
|
+
describe "#exists?" do
|
11
|
+
it "returns true if the table exists" do
|
12
|
+
expect(browser.table(id: 'axis_example')).to exist
|
13
|
+
expect(browser.table(id: /axis_example/)).to exist
|
14
|
+
expect(browser.table(index: 0)).to exist
|
15
|
+
expect(browser.table(xpath: "//table[@id='axis_example']")).to exist
|
16
|
+
end
|
17
|
+
|
18
|
+
it "returns the first table if given no args" do
|
19
|
+
expect(browser.table).to exist
|
20
|
+
end
|
21
|
+
|
22
|
+
it "returns false if the table does not exist" do
|
23
|
+
expect(browser.table(id: 'no_such_id')).to_not exist
|
24
|
+
expect(browser.table(id: /no_such_id/)).to_not exist
|
25
|
+
expect(browser.table(index: 1337)).to_not exist
|
26
|
+
expect(browser.table(xpath: "//table[@id='no_such_id']")).to_not exist
|
27
|
+
end
|
28
|
+
|
29
|
+
it "checks the tag name when locating by xpath" do
|
30
|
+
expect(browser.table(xpath: "//table//td")).to_not exist
|
31
|
+
expect(browser.table(xpath: "//table")).to exist
|
32
|
+
end
|
33
|
+
|
34
|
+
it "raises TypeError when 'what' argument is invalid" do
|
35
|
+
expect { browser.table(id: 3.14).exists? }.to raise_error(TypeError)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
# Other
|
40
|
+
bug "Safari does not strip text", :safari do
|
41
|
+
describe "#strings" do
|
42
|
+
it "returns a two-dimensional array representation of the table" do
|
43
|
+
expect(browser.table(id: 'inner').strings).to eq [
|
44
|
+
["Table 2, Row 1, Cell 1",
|
45
|
+
"Table 2, Row 1, Cell 2"]
|
46
|
+
]
|
47
|
+
expect(browser.table(id: 'outer').strings).to eq [
|
48
|
+
["Table 1, Row 1, Cell 1", "Table 1, Row 1, Cell 2"],
|
49
|
+
["Table 1, Row 2, Cell 1", "Table 1, Row 2, Cell 2\nTable 2, Row 1, Cell 1 Table 2, Row 1, Cell 2"],
|
50
|
+
["Table 1, Row 3, Cell 1", "Table 1, Row 3, Cell 2"]
|
51
|
+
]
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
describe "#headers" do
|
57
|
+
it "returns the first row of a table as the header row" do
|
58
|
+
headers = browser.table(id: "axis_example").headers
|
59
|
+
expect(headers).to be_a Watir::TableHeaderCellCollection
|
60
|
+
expect(headers.size).to eq 4
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe "#hashes" do
|
65
|
+
it "returns an Array of Hashes for the common table usage" do
|
66
|
+
expect(browser.table(id: "axis_example").hashes).to eq [
|
67
|
+
{ "" => "March 2008", "Before income tax" => "", "Income tax" => "", "After income tax" => "" },
|
68
|
+
{ "" => "Gregory House", "Before income tax" => "5 934", "Income tax" => "1 347", "After income tax" => "4 587" },
|
69
|
+
{ "" => "Hugh Laurie", "Before income tax" => "6 300", "Income tax" => "1 479", "After income tax" => "4 821" },
|
70
|
+
{ "" => "April 2008", "Before income tax" => "", "Income tax" => "", "After income tax" => "" },
|
71
|
+
{ "" => "Gregory House", "Before income tax" => "5 863", "Income tax" => "1 331", "After income tax" => "4 532" },
|
72
|
+
{ "" => "Hugh Laurie", "Before income tax" => "6 252", "Income tax" => "1 420", "After income tax" => "4 832" },
|
73
|
+
{ "" => "Sum", "Before income tax" => "24 349", "Income tax" => "5 577", "After income tax" => "18 722"},
|
74
|
+
]
|
75
|
+
end
|
76
|
+
|
77
|
+
it "raises an error if the table could not be parsed" do
|
78
|
+
browser.goto(WatirSpec.url_for("uneven_table.html"))
|
79
|
+
|
80
|
+
expect {
|
81
|
+
browser.table.hashes
|
82
|
+
}.to raise_error("row at index 0 has 2 cells, while header row has 3")
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
describe "#click" do
|
87
|
+
it "fires the table's onclick event" do
|
88
|
+
browser.table(id: 'inner').click
|
89
|
+
expect(messages).to include('table')
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
describe "#[]" do
|
94
|
+
it "returns the nth child row" do
|
95
|
+
expect(browser.table(id: 'outer')[0].id).to eq "outer_first"
|
96
|
+
expect(browser.table(id: 'inner')[0].id).to eq "inner_first"
|
97
|
+
expect(browser.table(id: 'outer')[2].id).to eq "outer_last"
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
describe "#row" do
|
102
|
+
let(:table) { browser.table(id: 'outer') }
|
103
|
+
|
104
|
+
it "finds rows belonging to this table" do
|
105
|
+
expect(table.row(id: "outer_last")).to exist
|
106
|
+
msg = /:text locator with RegExp values to find elements based on only visible text is deprecated. Use :visible_text instead./
|
107
|
+
expect { expect(table.row(text: /Table 1, Row 1, Cell 1/)).to exist }.to output(msg).to_stdout_from_any_process
|
108
|
+
end
|
109
|
+
|
110
|
+
it "does not find rows from a nested table" do
|
111
|
+
expect(table.row(id: "inner_first")).to_not exist
|
112
|
+
msg = /:text locator with RegExp values to find elements based on only visible text is deprecated. Use :visible_text instead./
|
113
|
+
expect do
|
114
|
+
expect(table.row(text: /\ATable 2, Row 1, Cell 1 Table 2, Row 1, Cell 2\z/)).to_not exist
|
115
|
+
end.to output(msg).to_stdout_from_any_process
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
describe "#rows" do
|
120
|
+
it "finds the correct number of rows (excluding nested tables)" do
|
121
|
+
expect(browser.table(id: 'inner').rows.length).to eq 1
|
122
|
+
expect(browser.table(id: 'outer').rows.length).to eq 3
|
123
|
+
end
|
124
|
+
|
125
|
+
it "finds rows matching the selector" do
|
126
|
+
rows = browser.table(id: 'outer').rows(id: /first|last/)
|
127
|
+
|
128
|
+
expect(rows.first.id).to eq "outer_first"
|
129
|
+
expect(rows.last.id).to eq "outer_last"
|
130
|
+
end
|
131
|
+
|
132
|
+
it "does not find rows from a nested table" do
|
133
|
+
expect(browser.table(id: "outer").rows(id: "t2_r1_c1").size).to eq 0
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
describe "#tbody" do
|
138
|
+
it "returns the correct instance of TableSection" do
|
139
|
+
body = browser.table(index: 0).tbody(id: 'first')
|
140
|
+
expect(body).to be_instance_of(Watir::TableSection)
|
141
|
+
expect(body[0][0].text).to eq "March 2008"
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
describe "#tbodys" do
|
146
|
+
it "returns the correct instance of TableSection" do
|
147
|
+
bodies = browser.table(index: 0).tbodys
|
148
|
+
|
149
|
+
expect(bodies).to be_instance_of(Watir::TableSectionCollection)
|
150
|
+
|
151
|
+
expect(bodies[0].id).to eq "first"
|
152
|
+
expect(bodies[1].id).to eq "second"
|
153
|
+
end
|
154
|
+
end
|
155
|
+
|
156
|
+
end
|