watir 6.0.0.beta5 → 6.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +5 -2
- data/CHANGES.md +10 -1
- data/Gemfile +4 -0
- data/README.md +37 -23
- data/Rakefile +6 -10
- data/appveyor.yml +13 -0
- data/lib/watir.rb +20 -21
- data/lib/watir/alert.rb +21 -5
- data/lib/watir/browser.rb +9 -3
- data/lib/watir/elements/checkbox.rb +0 -1
- data/lib/watir/elements/element.rb +92 -50
- data/lib/watir/elements/form.rb +1 -2
- data/lib/watir/elements/iframe.rb +6 -2
- data/lib/watir/elements/image.rb +1 -1
- data/lib/watir/elements/option.rb +0 -1
- data/lib/watir/elements/radio.rb +0 -1
- data/lib/watir/elements/select.rb +1 -10
- data/lib/watir/extensions/select_text.rb +1 -1
- data/lib/watir/legacy_wait.rb +126 -0
- data/lib/watir/locators/text_field/locator.rb +0 -3
- data/lib/watir/locators/text_field/selector_builder.rb +1 -4
- data/lib/watir/locators/text_field/selector_builder/xpath.rb +0 -2
- data/lib/watir/locators/text_field/validator.rb +1 -9
- data/lib/watir/row_container.rb +1 -1
- data/lib/watir/user_editable.rb +7 -5
- data/lib/watir/wait.rb +56 -135
- data/lib/watir/wait/timer.rb +29 -2
- data/lib/watir/window.rb +11 -1
- data/lib/watirspec.rb +81 -0
- data/lib/watirspec/guards.rb +58 -0
- data/lib/watirspec/implementation.rb +33 -0
- data/lib/watirspec/rake_tasks.rb +115 -0
- data/lib/watirspec/runner.rb +53 -0
- data/lib/watirspec/server.rb +99 -0
- data/lib/watirspec/server/app.rb +62 -0
- data/spec/browser_spec.rb +5 -5
- data/spec/click_spec.rb +1 -1
- data/spec/container_spec.rb +1 -1
- data/spec/element_locator_spec.rb +1 -1
- data/spec/element_spec.rb +20 -34
- data/spec/implementation_spec.rb +24 -0
- data/spec/input_spec.rb +1 -1
- data/spec/spec_helper.rb +35 -3
- data/spec/special_chars_spec.rb +1 -1
- data/spec/watirspec/.gitignore +2 -0
- data/spec/watirspec/after_hooks_spec.rb +179 -0
- data/spec/watirspec/alert_spec.rb +101 -0
- data/spec/watirspec/browser_spec.rb +291 -0
- data/spec/watirspec/cookies_spec.rb +147 -0
- data/spec/watirspec/drag_and_drop_spec.rb +49 -0
- data/spec/watirspec/element_hidden_spec.rb +65 -0
- data/spec/watirspec/elements/area_spec.rb +76 -0
- data/spec/watirspec/elements/areas_spec.rb +42 -0
- data/spec/watirspec/elements/button_spec.rb +270 -0
- data/spec/watirspec/elements/buttons_spec.rb +55 -0
- data/spec/watirspec/elements/checkbox_spec.rb +279 -0
- data/spec/watirspec/elements/checkboxes_spec.rb +44 -0
- data/spec/watirspec/elements/collections_spec.rb +16 -0
- data/spec/watirspec/elements/dd_spec.rb +126 -0
- data/spec/watirspec/elements/dds_spec.rb +42 -0
- data/spec/watirspec/elements/del_spec.rb +128 -0
- data/spec/watirspec/elements/dels_spec.rb +40 -0
- data/spec/watirspec/elements/div_spec.rb +199 -0
- data/spec/watirspec/elements/divs_spec.rb +42 -0
- data/spec/watirspec/elements/dl_spec.rb +144 -0
- data/spec/watirspec/elements/dls_spec.rb +43 -0
- data/spec/watirspec/elements/dt_spec.rb +126 -0
- data/spec/watirspec/elements/dts_spec.rb +42 -0
- data/spec/watirspec/elements/element_spec.rb +361 -0
- data/spec/watirspec/elements/elements_spec.rb +15 -0
- data/spec/watirspec/elements/em_spec.rb +100 -0
- data/spec/watirspec/elements/ems_spec.rb +43 -0
- data/spec/watirspec/elements/filefield_spec.rb +181 -0
- data/spec/watirspec/elements/filefields_spec.rb +43 -0
- data/spec/watirspec/elements/font_spec.rb +29 -0
- data/spec/watirspec/elements/form_spec.rb +70 -0
- data/spec/watirspec/elements/forms_spec.rb +44 -0
- data/spec/watirspec/elements/frame_spec.rb +121 -0
- data/spec/watirspec/elements/frames_spec.rb +41 -0
- data/spec/watirspec/elements/hidden_spec.rb +102 -0
- data/spec/watirspec/elements/hiddens_spec.rb +43 -0
- data/spec/watirspec/elements/hn_spec.rb +96 -0
- data/spec/watirspec/elements/hns_spec.rb +38 -0
- data/spec/watirspec/elements/iframe_spec.rb +174 -0
- data/spec/watirspec/elements/iframes_spec.rb +47 -0
- data/spec/watirspec/elements/image_spec.rb +164 -0
- data/spec/watirspec/elements/images_spec.rb +40 -0
- data/spec/watirspec/elements/ins_spec.rb +129 -0
- data/spec/watirspec/elements/inses_spec.rb +40 -0
- data/spec/watirspec/elements/label_spec.rb +79 -0
- data/spec/watirspec/elements/labels_spec.rb +40 -0
- data/spec/watirspec/elements/li_spec.rb +115 -0
- data/spec/watirspec/elements/link_spec.rb +174 -0
- data/spec/watirspec/elements/links_spec.rb +44 -0
- data/spec/watirspec/elements/lis_spec.rb +42 -0
- data/spec/watirspec/elements/map_spec.rb +79 -0
- data/spec/watirspec/elements/maps_spec.rb +41 -0
- data/spec/watirspec/elements/meta_spec.rb +23 -0
- data/spec/watirspec/elements/metas_spec.rb +40 -0
- data/spec/watirspec/elements/ol_spec.rb +89 -0
- data/spec/watirspec/elements/ols_spec.rb +40 -0
- data/spec/watirspec/elements/option_spec.rb +152 -0
- data/spec/watirspec/elements/p_spec.rb +115 -0
- data/spec/watirspec/elements/pre_spec.rb +115 -0
- data/spec/watirspec/elements/pres_spec.rb +40 -0
- data/spec/watirspec/elements/ps_spec.rb +40 -0
- data/spec/watirspec/elements/radio_spec.rb +263 -0
- data/spec/watirspec/elements/radios_spec.rb +43 -0
- data/spec/watirspec/elements/select_list_spec.rb +379 -0
- data/spec/watirspec/elements/select_lists_spec.rb +46 -0
- data/spec/watirspec/elements/span_spec.rb +129 -0
- data/spec/watirspec/elements/spans_spec.rb +40 -0
- data/spec/watirspec/elements/strong_spec.rb +92 -0
- data/spec/watirspec/elements/strongs_spec.rb +43 -0
- data/spec/watirspec/elements/table_nesting_spec.rb +51 -0
- data/spec/watirspec/elements/table_spec.rb +146 -0
- data/spec/watirspec/elements/tables_spec.rb +42 -0
- data/spec/watirspec/elements/tbody_spec.rb +96 -0
- data/spec/watirspec/elements/tbodys_spec.rb +62 -0
- data/spec/watirspec/elements/td_spec.rb +71 -0
- data/spec/watirspec/elements/tds_spec.rb +53 -0
- data/spec/watirspec/elements/text_field_spec.rb +302 -0
- data/spec/watirspec/elements/text_fields_spec.rb +44 -0
- data/spec/watirspec/elements/textarea_spec.rb +26 -0
- data/spec/watirspec/elements/textareas_spec.rb +24 -0
- data/spec/watirspec/elements/tfoot_spec.rb +91 -0
- data/spec/watirspec/elements/tfoots_spec.rb +68 -0
- data/spec/watirspec/elements/thead_spec.rb +91 -0
- data/spec/watirspec/elements/theads_spec.rb +68 -0
- data/spec/watirspec/elements/tr_spec.rb +80 -0
- data/spec/watirspec/elements/trs_spec.rb +61 -0
- data/spec/watirspec/elements/ul_spec.rb +79 -0
- data/spec/watirspec/elements/uls_spec.rb +39 -0
- data/spec/watirspec/html/alerts.html +12 -0
- data/spec/watirspec/html/aria_attributes.html +9 -0
- data/spec/watirspec/html/class_locator.html +8 -0
- data/spec/watirspec/html/clicks.html +19 -0
- data/spec/watirspec/html/closeable.html +13 -0
- data/spec/watirspec/html/collections.html +15 -0
- data/spec/watirspec/html/css/jquery-ui-1.8.17.custom.css +287 -0
- data/spec/watirspec/html/data_attributes.html +9 -0
- data/spec/watirspec/html/definition_lists.html +48 -0
- data/spec/watirspec/html/drag_and_drop.html +106 -0
- data/spec/watirspec/html/font.html +10 -0
- data/spec/watirspec/html/forms_with_input_elements.html +170 -0
- data/spec/watirspec/html/frame_1.html +22 -0
- data/spec/watirspec/html/frame_2.html +16 -0
- data/spec/watirspec/html/frames.html +11 -0
- data/spec/watirspec/html/hover.html +12 -0
- data/spec/watirspec/html/iframe_1.html +22 -0
- data/spec/watirspec/html/iframes.html +12 -0
- data/spec/watirspec/html/images.html +28 -0
- data/spec/watirspec/html/images/1.gif +0 -0
- data/spec/watirspec/html/images/2.gif +0 -0
- data/spec/watirspec/html/images/3.gif +0 -0
- data/spec/watirspec/html/images/button.png +0 -0
- data/spec/watirspec/html/images/circle.png +0 -0
- data/spec/watirspec/html/images/map.gif +0 -0
- data/spec/watirspec/html/images/map2.gif +0 -0
- data/spec/watirspec/html/images/minus.gif +0 -0
- data/spec/watirspec/html/images/originaltriangle.png +0 -0
- data/spec/watirspec/html/images/plus.gif +0 -0
- data/spec/watirspec/html/images/square.png +0 -0
- data/spec/watirspec/html/images/triangle.png +0 -0
- data/spec/watirspec/html/inner_outer.html +5 -0
- data/spec/watirspec/html/javascript/helpers.js +16 -0
- data/spec/watirspec/html/javascript/jquery-1.7.1.min.js +4 -0
- data/spec/watirspec/html/javascript/jquery-ui-1.8.17.custom.min.js +68 -0
- data/spec/watirspec/html/keylogger.html +15 -0
- data/spec/watirspec/html/modal_dialog.html +9 -0
- data/spec/watirspec/html/multiple_ids.html +14 -0
- data/spec/watirspec/html/nested_frame_1.html +1 -0
- data/spec/watirspec/html/nested_frame_2.html +9 -0
- data/spec/watirspec/html/nested_frame_3.html +14 -0
- data/spec/watirspec/html/nested_frames.html +10 -0
- data/spec/watirspec/html/nested_iframe_2.html +12 -0
- data/spec/watirspec/html/nested_iframes.html +9 -0
- data/spec/watirspec/html/nested_tables.html +203 -0
- data/spec/watirspec/html/non_control_elements.html +135 -0
- data/spec/watirspec/html/removed_element.html +24 -0
- data/spec/watirspec/html/right_click.html +11 -0
- data/spec/watirspec/html/special_chars.html +12 -0
- data/spec/watirspec/html/tables.html +121 -0
- data/spec/watirspec/html/timeout_window_location.html +19 -0
- data/spec/watirspec/html/uneven_table.html +20 -0
- data/spec/watirspec/html/wait.html +65 -0
- data/spec/watirspec/html/watirspec.css +0 -0
- data/spec/watirspec/html/window_switching.html +12 -0
- data/spec/watirspec/relaxed_locate_spec.rb +214 -0
- data/spec/watirspec/screenshot_spec.rb +29 -0
- data/spec/watirspec/wait_spec.rb +304 -0
- data/spec/watirspec/window_switching_spec.rb +411 -0
- data/spec/{implementation.rb → watirspec_helper.rb} +13 -13
- data/support/appveyor.cmd +9 -0
- data/support/doctest_helper.rb +5 -1
- data/support/travis.sh +0 -1
- data/watir.gemspec +3 -4
- metadata +323 -30
- data/.gitmodules +0 -3
@@ -0,0 +1,44 @@
|
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "Links" 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.links(title: "link_title_2").to_a).to eq [browser.link(title: "link_title_2")]
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
describe "#length" do
|
16
|
+
it "returns the number of links" do
|
17
|
+
expect(browser.links.length).to eq 4
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "#[]" do
|
22
|
+
it "returns the link at the given index" do
|
23
|
+
expect(browser.links[2].id).to eq "link_3"
|
24
|
+
end
|
25
|
+
|
26
|
+
it "returns a Link object also when the index is out of bounds" do
|
27
|
+
expect(browser.links[2000]).to_not be_nil
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
describe "#each" do
|
32
|
+
it "iterates through links correctly" do
|
33
|
+
count = 0
|
34
|
+
|
35
|
+
browser.links.each_with_index do |c, index|
|
36
|
+
expect(c.id).to eq browser.link(index: index).id
|
37
|
+
count += 1
|
38
|
+
end
|
39
|
+
|
40
|
+
expect(count).to be > 0
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "Lis" 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.lis(class: "nonlink").to_a).to eq [browser.li(class: "nonlink")]
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
describe "#length" do
|
16
|
+
it "returns the number of lis" do
|
17
|
+
expect(browser.lis.length).to eq 18
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "#[]" do
|
22
|
+
it "returns the li at the given index" do
|
23
|
+
expect(browser.lis[4].id).to eq "non_link_1"
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
describe "#each" do
|
28
|
+
it "iterates through lis correctly" do
|
29
|
+
count = 0
|
30
|
+
|
31
|
+
browser.lis.each_with_index do |l, index|
|
32
|
+
expect(l.id).to eq browser.li(index: index).id
|
33
|
+
expect(l.value).to eq browser.li(index: index).value
|
34
|
+
|
35
|
+
count += 1
|
36
|
+
end
|
37
|
+
|
38
|
+
expect(count).to be > 0
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|
@@ -0,0 +1,79 @@
|
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "Map" do
|
4
|
+
|
5
|
+
before :each do
|
6
|
+
browser.goto(WatirSpec.url_for("images.html"))
|
7
|
+
end
|
8
|
+
|
9
|
+
# Exists method
|
10
|
+
describe "#exist?" do
|
11
|
+
it "returns true if the 'map' exists" do
|
12
|
+
expect(browser.map(id: "triangle_map")).to exist
|
13
|
+
expect(browser.map(id: /triangle_map/)).to exist
|
14
|
+
expect(browser.map(name: "triangle_map")).to exist
|
15
|
+
expect(browser.map(name: /triangle_map/)).to exist
|
16
|
+
expect(browser.map(index: 0)).to exist
|
17
|
+
expect(browser.map(xpath: "//map[@id='triangle_map']")).to exist
|
18
|
+
end
|
19
|
+
|
20
|
+
it "returns the first map if given no args" do
|
21
|
+
expect(browser.map).to exist
|
22
|
+
end
|
23
|
+
|
24
|
+
it "returns false if the 'map' doesn't exist" do
|
25
|
+
expect(browser.map(id: "no_such_id")).to_not exist
|
26
|
+
expect(browser.map(id: /no_such_id/)).to_not exist
|
27
|
+
expect(browser.map(name: "no_such_id")).to_not exist
|
28
|
+
expect(browser.map(name: /no_such_id/)).to_not exist
|
29
|
+
expect(browser.map(index: 1337)).to_not exist
|
30
|
+
expect(browser.map(xpath: "//map[@id='no_such_id']")).to_not exist
|
31
|
+
end
|
32
|
+
|
33
|
+
it "raises TypeError when 'what' argument is invalid" do
|
34
|
+
expect { browser.map(id: 3.14).exists? }.to raise_error(TypeError)
|
35
|
+
end
|
36
|
+
|
37
|
+
it "raises MissingWayOfFindingObjectException when 'how' argument is invalid" do
|
38
|
+
expect { browser.map(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
# Attribute methods
|
43
|
+
describe "#id" do
|
44
|
+
it "returns the id attribute" do
|
45
|
+
expect(browser.map(index: 0).id).to eq "triangle_map"
|
46
|
+
end
|
47
|
+
|
48
|
+
it "returns an empty string if the element exists and the attribute doesn't" do
|
49
|
+
expect(browser.map(index: 1).id).to eq ''
|
50
|
+
end
|
51
|
+
|
52
|
+
it "raises UnknownObjectException if the p doesn't exist" do
|
53
|
+
expect { browser.map(id: "no_such_id").id }.to raise_unknown_object_exception
|
54
|
+
expect { browser.map(index: 1337).id }.to raise_unknown_object_exception
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe "#name" do
|
59
|
+
it "returns the name attribute" do
|
60
|
+
expect(browser.map(index: 0).name).to eq "triangle_map"
|
61
|
+
end
|
62
|
+
|
63
|
+
it "returns an empty string if the element exists and the attribute doesn't" do
|
64
|
+
expect(browser.map(index: 1).name).to eq ''
|
65
|
+
end
|
66
|
+
|
67
|
+
it "raises UnknownObjectException if the map doesn't exist" do
|
68
|
+
expect { browser.map(id: "no_such_id").name }.to raise_unknown_object_exception
|
69
|
+
expect { browser.map(index: 1337).name }.to raise_unknown_object_exception
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
describe "#respond_to?" do
|
74
|
+
it "returns true for all attribute methods" do
|
75
|
+
expect(browser.map(index: 0)).to respond_to(:id)
|
76
|
+
expect(browser.map(index: 0)).to respond_to(:name)
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "Maps" do
|
4
|
+
|
5
|
+
before :each do
|
6
|
+
browser.goto(WatirSpec.url_for("images.html"))
|
7
|
+
end
|
8
|
+
|
9
|
+
describe "with selectors" do
|
10
|
+
it "returns the matching elements" do
|
11
|
+
expect(browser.maps(name: "triangle_map").to_a).to eq [browser.map(name: "triangle_map")]
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
describe "#length" do
|
16
|
+
it "returns the number of maps" do
|
17
|
+
expect(browser.maps.length).to eq 2
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "#[]" do
|
22
|
+
it "returns the p at the given index" do
|
23
|
+
expect(browser.maps[0].id).to eq "triangle_map"
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
describe "#each" do
|
28
|
+
it "iterates through maps correctly" do
|
29
|
+
count = 0
|
30
|
+
|
31
|
+
browser.maps.each_with_index do |m, index|
|
32
|
+
expect(m.name).to eq browser.map(index: index).name
|
33
|
+
expect(m.id).to eq browser.map(index: index).id
|
34
|
+
count += 1
|
35
|
+
end
|
36
|
+
|
37
|
+
expect(count).to be > 0
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "Meta" do
|
4
|
+
before :each do
|
5
|
+
browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
|
6
|
+
end
|
7
|
+
|
8
|
+
describe "#exist?" do
|
9
|
+
it "returns true if the meta tag exists" do
|
10
|
+
expect(browser.meta(http_equiv: "Content-Type")).to exist
|
11
|
+
end
|
12
|
+
|
13
|
+
it "returns the first meta if given no args" do
|
14
|
+
expect(browser.meta).to exist
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
describe "content" do
|
19
|
+
it "returns the content attribute of the tag" do
|
20
|
+
expect(browser.meta(http_equiv: "Content-Type").content).to eq "text/html; charset=utf-8"
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "Metas" do
|
4
|
+
|
5
|
+
before :each do
|
6
|
+
browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
|
7
|
+
end
|
8
|
+
|
9
|
+
describe "with selectors" do
|
10
|
+
it "returns the matching elements" do
|
11
|
+
expect(browser.metas(name: "description").to_a).to eq [browser.meta(name: "description")]
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
describe "#length" do
|
16
|
+
it "returns the number of meta elements" do
|
17
|
+
expect(browser.metas.length).to eq 2
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "#[]" do
|
22
|
+
it "returns the meta element at the given index" do
|
23
|
+
expect(browser.metas[1].name).to eq "description"
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
describe "#each" do
|
28
|
+
it "iterates through meta elements correctly" do
|
29
|
+
count = 0
|
30
|
+
|
31
|
+
browser.metas.each_with_index do |m, index|
|
32
|
+
expect(m.content).to eq browser.meta(index: index).content
|
33
|
+
count += 1
|
34
|
+
end
|
35
|
+
|
36
|
+
expect(count).to be > 0
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
@@ -0,0 +1,89 @@
|
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "Ol" do
|
4
|
+
|
5
|
+
before :each do
|
6
|
+
browser.goto(WatirSpec.url_for("non_control_elements.html"))
|
7
|
+
end
|
8
|
+
|
9
|
+
# Exists method
|
10
|
+
describe "#exist?" do
|
11
|
+
it "returns true if the 'ol' exists" do
|
12
|
+
expect(browser.ol(id: "favorite_compounds")).to exist
|
13
|
+
expect(browser.ol(id: /favorite_compounds/)).to exist
|
14
|
+
expect(browser.ol(index: 0)).to exist
|
15
|
+
expect(browser.ol(xpath: "//ol[@id='favorite_compounds']")).to exist
|
16
|
+
end
|
17
|
+
|
18
|
+
it "returns the first ol if given no args" do
|
19
|
+
expect(browser.ol).to exist
|
20
|
+
end
|
21
|
+
|
22
|
+
it "returns false if the 'ol' doesn't exist" do
|
23
|
+
expect(browser.ol(id: "no_such_id")).to_not exist
|
24
|
+
expect(browser.ol(id: /no_such_id/)).to_not exist
|
25
|
+
expect(browser.ol(text: "no_such_text")).to_not exist
|
26
|
+
expect(browser.ol(text: /no_such_text/)).to_not exist
|
27
|
+
expect(browser.ol(class: "no_such_class")).to_not exist
|
28
|
+
expect(browser.ol(class: /no_such_class/)).to_not exist
|
29
|
+
expect(browser.ol(index: 1337)).to_not exist
|
30
|
+
expect(browser.ol(xpath: "//ol[@id='no_such_id']")).to_not exist
|
31
|
+
end
|
32
|
+
|
33
|
+
it "returns false if the 'ol' doesn't exist" do
|
34
|
+
expect(browser.ol(id: "no_such_id")).to_not exist
|
35
|
+
expect(browser.ol(id: /no_such_id/)).to_not exist
|
36
|
+
expect(browser.ol(text: "no_such_text")).to_not exist
|
37
|
+
expect(browser.ol(text: /no_such_text/)).to_not exist
|
38
|
+
expect(browser.ol(class: "no_such_class")).to_not exist
|
39
|
+
expect(browser.ol(class: /no_such_class/)).to_not exist
|
40
|
+
expect(browser.ol(index: 1337)).to_not exist
|
41
|
+
expect(browser.ol(xpath: "//ol[@id='no_such_id']")).to_not exist
|
42
|
+
end
|
43
|
+
|
44
|
+
it "raises TypeError when 'what' argument is invalid" do
|
45
|
+
expect { browser.ol(id: 3.14).exists? }.to raise_error(TypeError)
|
46
|
+
end
|
47
|
+
|
48
|
+
it "raises MissingWayOfFindingObjectException when 'how' argument is invalid" do
|
49
|
+
expect { browser.ol(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
# Attribute methods
|
54
|
+
describe "#class_name" do
|
55
|
+
it "returns the class attribute" do
|
56
|
+
expect(browser.ol(id: 'favorite_compounds').class_name).to eq 'chemistry'
|
57
|
+
end
|
58
|
+
|
59
|
+
it "returns an empty string if the element exists and the attribute doesn't" do
|
60
|
+
expect(browser.ol(index: 1).class_name).to eq ''
|
61
|
+
end
|
62
|
+
|
63
|
+
it "raises UnknownObjectException if the ol doesn't exist" do
|
64
|
+
expect { browser.ol(id: 'no_such_id').class_name }.to raise_unknown_object_exception
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
describe "#id" do
|
69
|
+
it "returns the id attribute" do
|
70
|
+
expect(browser.ol(class: 'chemistry').id).to eq "favorite_compounds"
|
71
|
+
end
|
72
|
+
|
73
|
+
it "returns an empty string if the element exists and the attribute doesn't" do
|
74
|
+
expect(browser.ol(index: 1).id).to eq ''
|
75
|
+
end
|
76
|
+
|
77
|
+
it "raises UnknownObjectException if the ol doesn't exist" do
|
78
|
+
expect { browser.ol(id: "no_such_id").id }.to raise_unknown_object_exception
|
79
|
+
expect { browser.ol(index: 1337).id }.to raise_unknown_object_exception
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
describe "#respond_to?" do
|
84
|
+
it "returns true for all attribute methods" do
|
85
|
+
expect(browser.ol(index: 0)).to respond_to(:class_name)
|
86
|
+
expect(browser.ol(index: 0)).to respond_to(:id)
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "Ols" 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.ols(class: "chemistry").to_a).to eq [browser.ol(class: "chemistry")]
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
describe "#length" do
|
16
|
+
it "returns the number of ols" do
|
17
|
+
expect(browser.ols.length).to eq 2
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "#[]" do
|
22
|
+
it "returns the ol at the given index" do
|
23
|
+
expect(browser.ols[0].id).to eq "favorite_compounds"
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
describe "#each" do
|
28
|
+
it "iterates through ols correctly" do
|
29
|
+
count = 0
|
30
|
+
|
31
|
+
browser.ols.each_with_index do |ol, index|
|
32
|
+
expect(ol.id).to eq browser.ol(index: index).id
|
33
|
+
count += 1
|
34
|
+
end
|
35
|
+
|
36
|
+
expect(count).to be > 0
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
@@ -0,0 +1,152 @@
|
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "Option" do
|
4
|
+
|
5
|
+
before :each do
|
6
|
+
browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
|
7
|
+
end
|
8
|
+
|
9
|
+
describe "#exists?" do
|
10
|
+
it "returns true if the element exists (page context)" do
|
11
|
+
expect(browser.option(id: "nor")).to exist
|
12
|
+
expect(browser.option(id: /nor/)).to exist
|
13
|
+
expect(browser.option(value: "2")).to exist
|
14
|
+
expect(browser.option(value: /2/)).to exist
|
15
|
+
expect(browser.option(text: "Norway")).to exist
|
16
|
+
expect(browser.option(text: /Norway/)).to exist
|
17
|
+
expect(browser.option(class: "scandinavia")).to exist
|
18
|
+
expect(browser.option(index: 1)).to exist
|
19
|
+
expect(browser.option(xpath: "//option[@id='nor']")).to exist
|
20
|
+
end
|
21
|
+
|
22
|
+
it "returns the first option if given no args" do
|
23
|
+
expect(browser.option).to exist
|
24
|
+
end
|
25
|
+
|
26
|
+
it "returns true if the element exists (select_list context)" do
|
27
|
+
expect(browser.select_list(name: "new_user_country").option(id: "nor")).to exist
|
28
|
+
expect(browser.select_list(name: "new_user_country").option(id: /nor/)).to exist
|
29
|
+
expect(browser.select_list(name: "new_user_country").option(value: "2")).to exist
|
30
|
+
expect(browser.select_list(name: "new_user_country").option(value: /2/)).to exist
|
31
|
+
expect(browser.select_list(name: "new_user_country").option(text: "Norway")).to exist
|
32
|
+
expect(browser.select_list(name: "new_user_country").option(text: /Norway/)).to exist
|
33
|
+
expect(browser.select_list(name: "new_user_country").option(class: "scandinavia")).to exist
|
34
|
+
expect(browser.select_list(name: "new_user_country").option(index: 1)).to exist
|
35
|
+
expect(browser.select_list(name: "new_user_country").option(xpath: "//option[@id='nor']")).to exist
|
36
|
+
expect(browser.select_list(name: "new_user_country").option(label: "Germany")).to exist
|
37
|
+
end
|
38
|
+
|
39
|
+
it "returns false if the element does not exist (page context)" do
|
40
|
+
expect(browser.option(id: "no_such_id")).to_not exist
|
41
|
+
expect(browser.option(id: /no_such_id/)).to_not exist
|
42
|
+
expect(browser.option(value: "no_such_value")).to_not exist
|
43
|
+
expect(browser.option(value: /no_such_value/)).to_not exist
|
44
|
+
expect(browser.option(text: "no_such_text")).to_not exist
|
45
|
+
expect(browser.option(text: /no_such_text/)).to_not exist
|
46
|
+
expect(browser.option(class: "no_such_class")).to_not exist
|
47
|
+
expect(browser.option(index: 1337)).to_not exist
|
48
|
+
expect(browser.option(xpath: "//option[@id='no_such_id']")).to_not exist
|
49
|
+
end
|
50
|
+
|
51
|
+
it "returns false if the element does not exist (select_list context)" do
|
52
|
+
expect(browser.select_list(name: "new_user_country").option(id: "no_such_id")).to_not exist
|
53
|
+
expect(browser.select_list(name: "new_user_country").option(id: /no_such_id/)).to_not exist
|
54
|
+
expect(browser.select_list(name: "new_user_country").option(value: "no_such_value")).to_not exist
|
55
|
+
expect(browser.select_list(name: "new_user_country").option(value: /no_such_value/)).to_not exist
|
56
|
+
expect(browser.select_list(name: "new_user_country").option(text: "no_such_text")).to_not exist
|
57
|
+
expect(browser.select_list(name: "new_user_country").option(text: /no_such_text/)).to_not exist
|
58
|
+
expect(browser.select_list(name: "new_user_country").option(class: "no_such_class")).to_not exist
|
59
|
+
expect(browser.select_list(name: "new_user_country").option(index: 1337)).to_not exist
|
60
|
+
expect(browser.select_list(name: "new_user_country").option(xpath: "//option[@id='no_such_id']")).to_not exist
|
61
|
+
end
|
62
|
+
|
63
|
+
it "raises TypeError when 'what' argument is invalid" do
|
64
|
+
expect { browser.option(id: 3.14).exists? }.to raise_error(TypeError)
|
65
|
+
expect { browser.select_list(name: "new_user_country").option(id: 3.14).exists? }.to raise_error(TypeError)
|
66
|
+
end
|
67
|
+
|
68
|
+
it "raises MissingWayOfFindingObjectException when 'how' argument is invalid" do
|
69
|
+
expect { browser.option(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
|
70
|
+
expect { browser.select_list(name: "new_user_country").option(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
bug "https://bugzilla.mozilla.org/show_bug.cgi?id=1255957", :firefox do
|
75
|
+
describe "#select" do
|
76
|
+
it "selects the chosen option (page context)" do
|
77
|
+
browser.option(text: "Denmark").select
|
78
|
+
expect(browser.select_list(name: "new_user_country").selected_options.map(&:text)).to eq ["Denmark"]
|
79
|
+
end
|
80
|
+
|
81
|
+
it "selects the chosen option (select_list context)" do
|
82
|
+
browser.select_list(name: "new_user_country").option(text: "Denmark").select
|
83
|
+
expect(browser.select_list(name: "new_user_country").selected_options.map(&:text)).to eq ["Denmark"]
|
84
|
+
end
|
85
|
+
|
86
|
+
it "selects the option when found by text (page context)" do
|
87
|
+
browser.option(text: 'Sweden').select
|
88
|
+
expect(browser.option(text: 'Sweden')).to be_selected
|
89
|
+
end
|
90
|
+
|
91
|
+
it "selects the option when found by text (select_list context)" do
|
92
|
+
browser.select_list(name: 'new_user_country').option(text: 'Sweden').select
|
93
|
+
expect(browser.select_list(name: 'new_user_country').option(text: 'Sweden')).to be_selected
|
94
|
+
end
|
95
|
+
|
96
|
+
# there's no onclick event for Option in IE / WebKit
|
97
|
+
# http://msdn.microsoft.com/en-us/library/ms535877(VS.85).aspx
|
98
|
+
compliant_on :ff_legacy do
|
99
|
+
it "fires the onclick event (page context)" do
|
100
|
+
browser.option(text: "Username 3").select
|
101
|
+
expect(browser.textarea(id: 'delete_user_comment').value).to eq 'Don\'t do it!'
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
# there's no onclick event for Option in IE / WebKit
|
107
|
+
# http://msdn.microsoft.com/en-us/library/ms535877(VS.85).aspx
|
108
|
+
compliant_on :ff_legacy do
|
109
|
+
it "fires onclick event (select_list context)" do
|
110
|
+
browser.select_list(id: 'delete_user_username').option(text: "Username 3").select
|
111
|
+
expect(browser.textarea(id: 'delete_user_comment').value).to eq 'Don\'t do it!'
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
it "raises UnknownObjectException if the option does not exist (page context)" do
|
116
|
+
expect { browser.option(text: "no_such_text").select }.to raise_unknown_object_exception
|
117
|
+
expect { browser.option(text: /missing/).select }.to raise_unknown_object_exception
|
118
|
+
end
|
119
|
+
|
120
|
+
it "raises UnknownObjectException if the option does not exist (select_list context)" do
|
121
|
+
expect { browser.select_list(name: "new_user_country").option(text: "no_such_text").select }.to raise_unknown_object_exception
|
122
|
+
expect { browser.select_list(name: "new_user_country").option(text: /missing/).select }.to raise_unknown_object_exception
|
123
|
+
end
|
124
|
+
|
125
|
+
it "raises MissingWayOfFindingObjectException when given a bad 'how' (page context)" do
|
126
|
+
expect { browser.option(missing: "Denmark").select }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
|
127
|
+
end
|
128
|
+
|
129
|
+
it "raises MissingWayOfFindingObjectException when given a bad 'how' (select_list context)" do
|
130
|
+
expect { browser.select_list(name: "new_user_country").option(missing: "Denmark").select }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
134
|
+
describe "#class_name" do
|
135
|
+
it "is able to get attributes (page context)" do
|
136
|
+
expect(browser.option(text: 'Sweden').class_name).to eq "scandinavia"
|
137
|
+
end
|
138
|
+
|
139
|
+
it "is able to get attributes (select_list context)" do
|
140
|
+
expect(browser.select_list(name: "new_user_country").option(text: 'Sweden').class_name).to eq "scandinavia"
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
describe "#respond_to?" do
|
145
|
+
it "returns true for all attribute methods" do
|
146
|
+
expect(browser.select_list(name: "new_user_country").option(text: 'Sweden')).to respond_to(:class_name)
|
147
|
+
expect(browser.select_list(name: "new_user_country").option(text: 'Sweden')).to respond_to(:id)
|
148
|
+
expect(browser.select_list(name: "new_user_country").option(text: 'Sweden')).to respond_to(:text)
|
149
|
+
end
|
150
|
+
end
|
151
|
+
|
152
|
+
end
|