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,53 +1,53 @@
|
|
1
|
-
require "watirspec_helper"
|
2
|
-
|
3
|
-
describe "TableCells" do
|
4
|
-
|
5
|
-
before :each do
|
6
|
-
browser.goto(WatirSpec.url_for("tables.html"))
|
7
|
-
end
|
8
|
-
|
9
|
-
describe "with selectors" do
|
10
|
-
it "returns the matching elements" do
|
11
|
-
expect(browser.tds(headers: "before_tax").to_a).to eq [browser.td(headers: "before_tax")]
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
# describe "#length" do
|
16
|
-
# it "returns the number of cells" do
|
17
|
-
# browser.table(id: 'outer').cells.length.to eq 6
|
18
|
-
# browser.table(id: 'inner').cells.length.to eq 2
|
19
|
-
# end
|
20
|
-
# end
|
21
|
-
#
|
22
|
-
# describe "#[]" do
|
23
|
-
# it "returns the row at the given index" do
|
24
|
-
# browser.table(id: 'outer').cells[0].text.to eq "Table 1, Row 1, Cell 1"
|
25
|
-
# browser.table(id: 'inner').cells[0].text.to eq "Table 2, Row 1, Cell 1"
|
26
|
-
# browser.table(id: 'outer').cells[6].text.to eq "Table 1, Row 3, Cell 2"
|
27
|
-
# end
|
28
|
-
# end
|
29
|
-
|
30
|
-
describe "#each" do
|
31
|
-
it "iterates through all cells on the page correctly" do
|
32
|
-
count = 0
|
33
|
-
|
34
|
-
browser.tds.each_with_index do |c, index|
|
35
|
-
expect(c.id).to eq browser.td(index: index).id
|
36
|
-
count += 1
|
37
|
-
end
|
38
|
-
|
39
|
-
expect(count).to be > 0
|
40
|
-
end
|
41
|
-
|
42
|
-
it "iterates through cells inside a table" do
|
43
|
-
count = 0
|
44
|
-
|
45
|
-
inner_table = browser.table(id: 'inner')
|
46
|
-
inner_table.tds.each_with_index do |c, index|
|
47
|
-
expect(c.id).to eq inner_table.td(index: index).id
|
48
|
-
count += 1
|
49
|
-
end
|
50
|
-
end
|
51
|
-
|
52
|
-
end
|
53
|
-
end
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "TableCells" do
|
4
|
+
|
5
|
+
before :each do
|
6
|
+
browser.goto(WatirSpec.url_for("tables.html"))
|
7
|
+
end
|
8
|
+
|
9
|
+
describe "with selectors" do
|
10
|
+
it "returns the matching elements" do
|
11
|
+
expect(browser.tds(headers: "before_tax").to_a).to eq [browser.td(headers: "before_tax")]
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
# describe "#length" do
|
16
|
+
# it "returns the number of cells" do
|
17
|
+
# browser.table(id: 'outer').cells.length.to eq 6
|
18
|
+
# browser.table(id: 'inner').cells.length.to eq 2
|
19
|
+
# end
|
20
|
+
# end
|
21
|
+
#
|
22
|
+
# describe "#[]" do
|
23
|
+
# it "returns the row at the given index" do
|
24
|
+
# browser.table(id: 'outer').cells[0].text.to eq "Table 1, Row 1, Cell 1"
|
25
|
+
# browser.table(id: 'inner').cells[0].text.to eq "Table 2, Row 1, Cell 1"
|
26
|
+
# browser.table(id: 'outer').cells[6].text.to eq "Table 1, Row 3, Cell 2"
|
27
|
+
# end
|
28
|
+
# end
|
29
|
+
|
30
|
+
describe "#each" do
|
31
|
+
it "iterates through all cells on the page correctly" do
|
32
|
+
count = 0
|
33
|
+
|
34
|
+
browser.tds.each_with_index do |c, index|
|
35
|
+
expect(c.id).to eq browser.td(index: index).id
|
36
|
+
count += 1
|
37
|
+
end
|
38
|
+
|
39
|
+
expect(count).to be > 0
|
40
|
+
end
|
41
|
+
|
42
|
+
it "iterates through cells inside a table" do
|
43
|
+
count = 0
|
44
|
+
|
45
|
+
inner_table = browser.table(id: 'inner')
|
46
|
+
inner_table.tds.each_with_index do |c, index|
|
47
|
+
expect(c.id).to eq inner_table.td(index: index).id
|
48
|
+
count += 1
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|
53
|
+
end
|
@@ -1,360 +1,360 @@
|
|
1
|
-
require "watirspec_helper"
|
2
|
-
|
3
|
-
describe "TextField" do
|
4
|
-
|
5
|
-
before :each do
|
6
|
-
browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
|
7
|
-
end
|
8
|
-
|
9
|
-
# Exists method
|
10
|
-
describe "#exists?" do
|
11
|
-
it "returns true if the element exists" do
|
12
|
-
expect(browser.text_field(id: 'new_user_email')).to exist
|
13
|
-
expect(browser.text_field(id: /new_user_email/)).to exist
|
14
|
-
expect(browser.text_field(name: 'new_user_email')).to exist
|
15
|
-
expect(browser.text_field(name: /new_user_email/)).to exist
|
16
|
-
expect(browser.text_field(value: 'Developer')).to exist
|
17
|
-
expect(browser.text_field(value: /Developer/)).to exist
|
18
|
-
expect(browser.text_field(text: 'Developer')).to exist
|
19
|
-
expect(browser.text_field(text: /Developer/)).to exist
|
20
|
-
expect(browser.text_field(class: 'name')).to exist
|
21
|
-
expect(browser.text_field(class: /name/)).to exist
|
22
|
-
expect(browser.text_field(index: 0)).to exist
|
23
|
-
expect(browser.text_field(xpath: "//input[@id='new_user_email']")).to exist
|
24
|
-
expect(browser.text_field(label: "First name")).to exist
|
25
|
-
expect(browser.text_field(label: /(Last|First) name/)).to exist
|
26
|
-
expect(browser.text_field(label: 'Without for')).to exist
|
27
|
-
expect(browser.text_field(label: /Without for/)).to exist
|
28
|
-
end
|
29
|
-
|
30
|
-
it "returns the first text field if given no args" do
|
31
|
-
expect(browser.text_field).to exist
|
32
|
-
end
|
33
|
-
|
34
|
-
it "respects text fields types" do
|
35
|
-
expect(browser.text_field.type).to eq('text')
|
36
|
-
end
|
37
|
-
|
38
|
-
it "returns true if the element exists (no type attribute)" do
|
39
|
-
expect(browser.text_field(id: 'new_user_first_name')).to exist
|
40
|
-
end
|
41
|
-
|
42
|
-
it "returns true if the element exists (invalid type attribute)" do
|
43
|
-
expect(browser.text_field(id: 'new_user_last_name')).to exist
|
44
|
-
end
|
45
|
-
|
46
|
-
it "returns true for element with upper case type" do
|
47
|
-
expect(browser.text_field(id: "new_user_email_confirm")).to exist
|
48
|
-
end
|
49
|
-
|
50
|
-
it "returns true for element with unknown type attribute" do
|
51
|
-
expect(browser.text_field(id: "unknown_text_field")).to exist
|
52
|
-
end
|
53
|
-
|
54
|
-
it "returns false if the element does not exist" do
|
55
|
-
expect(browser.text_field(id: 'no_such_id')).to_not exist
|
56
|
-
expect(browser.text_field(id: /no_such_id/)).to_not exist
|
57
|
-
expect(browser.text_field(name: 'no_such_name')).to_not exist
|
58
|
-
expect(browser.text_field(name: /no_such_name/)).to_not exist
|
59
|
-
expect(browser.text_field(value: 'no_such_value')).to_not exist
|
60
|
-
expect(browser.text_field(value: /no_such_value/)).to_not exist
|
61
|
-
expect(browser.text_field(text: 'no_such_text')).to_not exist
|
62
|
-
expect(browser.text_field(text: /no_such_text/)).to_not exist
|
63
|
-
expect(browser.text_field(class: 'no_such_class')).to_not exist
|
64
|
-
expect(browser.text_field(class: /no_such_class/)).to_not exist
|
65
|
-
expect(browser.text_field(index: 1337)).to_not exist
|
66
|
-
expect(browser.text_field(xpath: "//input[@id='no_such_id']")).to_not exist
|
67
|
-
expect(browser.text_field(label: "bad label")).to_not exist
|
68
|
-
expect(browser.text_field(label: /bad label/)).to_not exist
|
69
|
-
|
70
|
-
# input type='hidden' should not be found by #text_field
|
71
|
-
expect(browser.text_field(id: "new_user_interests_dolls")).to_not exist
|
72
|
-
end
|
73
|
-
|
74
|
-
it "raises TypeError when 'what' argument is invalid" do
|
75
|
-
expect { browser.text_field(id: 3.14).exists? }.to raise_error(TypeError)
|
76
|
-
end
|
77
|
-
end
|
78
|
-
|
79
|
-
# Attribute methods
|
80
|
-
describe "#id" do
|
81
|
-
it "returns the id attribute if the text field exists" do
|
82
|
-
expect(browser.text_field(index: 4).id).to eq "new_user_occupation"
|
83
|
-
end
|
84
|
-
|
85
|
-
it "raises UnknownObjectException if the text field doesn't exist" do
|
86
|
-
expect { browser.text_field(index: 1337).id }.to raise_unknown_object_exception
|
87
|
-
end
|
88
|
-
end
|
89
|
-
|
90
|
-
describe "#name" do
|
91
|
-
it "returns the name attribute if the text field exists" do
|
92
|
-
expect(browser.text_field(index: 3).name).to eq "new_user_email_confirm"
|
93
|
-
end
|
94
|
-
|
95
|
-
it "raises UnknownObjectException if the text field doesn't exist" do
|
96
|
-
expect { browser.text_field(index: 1337).name }.to raise_unknown_object_exception
|
97
|
-
end
|
98
|
-
end
|
99
|
-
|
100
|
-
describe "#title" do
|
101
|
-
it "returns the title attribute if the text field exists" do
|
102
|
-
expect(browser.text_field(id: "new_user_code").title).to eq "Your personal code"
|
103
|
-
end
|
104
|
-
|
105
|
-
it "raises UnknownObjectException if the text field doesn't exist" do
|
106
|
-
expect { browser.text_field(index: 1337).title }.to raise_unknown_object_exception
|
107
|
-
end
|
108
|
-
end
|
109
|
-
|
110
|
-
describe "#type" do
|
111
|
-
it "returns the type attribute if the text field exists" do
|
112
|
-
expect(browser.text_field(index: 3).type).to eq "text"
|
113
|
-
end
|
114
|
-
|
115
|
-
it "returns 'text' if the type attribute is invalid" do
|
116
|
-
expect(browser.text_field(id: 'new_user_last_name').type).to eq "text"
|
117
|
-
end
|
118
|
-
|
119
|
-
it "returns 'text' if the type attribute does not exist" do
|
120
|
-
expect(browser.text_field(id: 'new_user_first_name').type).to eq "text"
|
121
|
-
end
|
122
|
-
|
123
|
-
it "raises UnknownObjectException if the text field doesn't exist" do
|
124
|
-
expect { browser.text_field(index: 1337).type }.to raise_unknown_object_exception
|
125
|
-
end
|
126
|
-
end
|
127
|
-
|
128
|
-
describe "#value" do
|
129
|
-
it "returns the value attribute if the text field exists" do
|
130
|
-
expect(browser.text_field(name: "new_user_occupation").value).to eq "Developer"
|
131
|
-
expect(browser.text_field(index: 4).value).to eq "Developer"
|
132
|
-
expect(browser.text_field(name: /new_user_occupation/i).value).to eq "Developer"
|
133
|
-
end
|
134
|
-
|
135
|
-
it "raises UnknownObjectException if the text field doesn't exist" do
|
136
|
-
expect { browser.text_field(index: 1337).value }.to raise_unknown_object_exception
|
137
|
-
end
|
138
|
-
end
|
139
|
-
|
140
|
-
describe "#respond_to?" do
|
141
|
-
it "returns true for all attribute methods" do
|
142
|
-
expect(browser.text_field(index: 0)).to respond_to(:class_name)
|
143
|
-
expect(browser.text_field(index: 0)).to respond_to(:id)
|
144
|
-
expect(browser.text_field(index: 0)).to respond_to(:name)
|
145
|
-
expect(browser.text_field(index: 0)).to respond_to(:title)
|
146
|
-
expect(browser.text_field(index: 0)).to respond_to(:type)
|
147
|
-
expect(browser.text_field(index: 0)).to respond_to(:value)
|
148
|
-
end
|
149
|
-
end
|
150
|
-
|
151
|
-
# Access methods
|
152
|
-
describe "#enabled?" do
|
153
|
-
it "returns true for enabled text fields" do
|
154
|
-
expect(browser.text_field(name: "new_user_occupation")).to be_enabled
|
155
|
-
expect(browser.text_field(id: "new_user_email")).to be_enabled
|
156
|
-
end
|
157
|
-
|
158
|
-
it "returns false for disabled text fields" do
|
159
|
-
expect(browser.text_field(name: "new_user_species")).to_not be_enabled
|
160
|
-
end
|
161
|
-
|
162
|
-
it "raises UnknownObjectException if the text field doesn't exist" do
|
163
|
-
expect { browser.text_field(id: "no_such_id").enabled? }.to raise_unknown_object_exception
|
164
|
-
end
|
165
|
-
end
|
166
|
-
|
167
|
-
describe "#disabled?" do
|
168
|
-
it "returns true if the text field is disabled" do
|
169
|
-
expect(browser.text_field(id: 'new_user_species')).to be_disabled
|
170
|
-
end
|
171
|
-
|
172
|
-
it "returns false if the text field is enabled" do
|
173
|
-
expect(browser.text_field(index: 0)).to_not be_disabled
|
174
|
-
end
|
175
|
-
|
176
|
-
it "raises UnknownObjectException if the text field doesn't exist" do
|
177
|
-
expect { browser.text_field(index: 1337).disabled? }.to raise_unknown_object_exception
|
178
|
-
end
|
179
|
-
end
|
180
|
-
|
181
|
-
describe "#readonly?" do
|
182
|
-
it "returns true for read-only text fields" do
|
183
|
-
expect(browser.text_field(name: "new_user_code")).to be_readonly
|
184
|
-
expect(browser.text_field(id: "new_user_code")).to be_readonly
|
185
|
-
end
|
186
|
-
|
187
|
-
it "returns false for writable text fields" do
|
188
|
-
expect(browser.text_field(name: "new_user_email")).to_not be_readonly
|
189
|
-
end
|
190
|
-
|
191
|
-
it "raises UnknownObjectException if the text field doesn't exist" do
|
192
|
-
expect { browser.text_field(id: 'no_such_id').readonly? }.to raise_unknown_object_exception
|
193
|
-
end
|
194
|
-
|
195
|
-
it "raises UnknownReadOnlyException if sending keys to readonly element" do
|
196
|
-
expect { browser.text_field(id: 'new_user_code').set 'foo' }.to raise_object_read_only_exception
|
197
|
-
end
|
198
|
-
end
|
199
|
-
|
200
|
-
# Manipulation methods
|
201
|
-
not_compliant_on :safari do
|
202
|
-
describe "#append" do
|
203
|
-
it "appends the text to the text field" do
|
204
|
-
browser.text_field(name: "new_user_occupation").append(" Append This")
|
205
|
-
expect(browser.text_field(name: "new_user_occupation").value).to eq "Developer Append This"
|
206
|
-
end
|
207
|
-
|
208
|
-
it "appends multi-byte characters" do
|
209
|
-
browser.text_field(name: "new_user_occupation").append(" ijij")
|
210
|
-
expect(browser.text_field(name: "new_user_occupation").value).to eq "Developer ijij"
|
211
|
-
end
|
212
|
-
|
213
|
-
it "raises ObjectReadOnlyException if the object is read only" do
|
214
|
-
expect { browser.text_field(id: "new_user_code").append("Append This") }.to raise_object_read_only_exception
|
215
|
-
end
|
216
|
-
|
217
|
-
it "raises ObjectDisabledException if the object is disabled" do
|
218
|
-
expect { browser.text_field(name: "new_user_species").append("Append This") }.to raise_object_disabled_exception
|
219
|
-
end
|
220
|
-
|
221
|
-
it "raises UnknownObjectException if the object doesn't exist" do
|
222
|
-
expect { browser.text_field(name: "no_such_name").append("Append This") }.to raise_unknown_object_exception
|
223
|
-
end
|
224
|
-
end
|
225
|
-
end
|
226
|
-
|
227
|
-
describe "#clear" do
|
228
|
-
it "removes all text from the text field" do
|
229
|
-
browser.text_field(name: "new_user_occupation").clear
|
230
|
-
expect(browser.text_field(name: "new_user_occupation").value).to be_empty
|
231
|
-
browser.textarea(id: "delete_user_comment").clear
|
232
|
-
expect(browser.textarea(id: "delete_user_comment").value).to be_empty
|
233
|
-
end
|
234
|
-
|
235
|
-
it "raises UnknownObjectException if the text field doesn't exist" do
|
236
|
-
expect { browser.text_field(id: "no_such_id").clear }.to raise_unknown_object_exception
|
237
|
-
end
|
238
|
-
|
239
|
-
it "raises ObjectReadOnlyException if the object is read only" do
|
240
|
-
expect { browser.text_field(id: "new_user_code").clear }.to raise_object_read_only_exception
|
241
|
-
end
|
242
|
-
end
|
243
|
-
|
244
|
-
describe "#value=" do
|
245
|
-
it "sets the value of the element" do
|
246
|
-
browser.text_field(id: 'new_user_email').value = 'Hello Cruel World'
|
247
|
-
expect(browser.text_field(id: "new_user_email").value).to eq 'Hello Cruel World'
|
248
|
-
end
|
249
|
-
|
250
|
-
it "is able to set multi-byte characters" do
|
251
|
-
browser.text_field(name: "new_user_occupation").value = "ijij"
|
252
|
-
expect(browser.text_field(name: "new_user_occupation").value).to eq "ijij"
|
253
|
-
end
|
254
|
-
|
255
|
-
it "sets the value of a textarea element" do
|
256
|
-
browser.textarea(id: 'delete_user_comment').value = 'Hello Cruel World'
|
257
|
-
expect(browser.textarea(id: "delete_user_comment").value).to eq 'Hello Cruel World'
|
258
|
-
end
|
259
|
-
|
260
|
-
it "raises UnknownObjectException if the text field doesn't exist" do
|
261
|
-
expect { browser.text_field(name: "no_such_name").value = 'yo' }.to raise_unknown_object_exception
|
262
|
-
end
|
263
|
-
end
|
264
|
-
|
265
|
-
describe "#set" do
|
266
|
-
it "sets the value of the element" do
|
267
|
-
browser.text_field(id: 'new_user_email').set('Bye Cruel World')
|
268
|
-
expect(browser.text_field(id: "new_user_email").value).to eq 'Bye Cruel World'
|
269
|
-
end
|
270
|
-
|
271
|
-
it "sets the value of a textarea element" do
|
272
|
-
browser.textarea(id: 'delete_user_comment').set('Hello Cruel World')
|
273
|
-
expect(browser.textarea(id: "delete_user_comment").value).to eq 'Hello Cruel World'
|
274
|
-
end
|
275
|
-
|
276
|
-
it "fires events" do
|
277
|
-
browser.text_field(id: "new_user_username").set("Hello World")
|
278
|
-
expect(browser.span(id: "current_length").text).to eq "11"
|
279
|
-
end
|
280
|
-
|
281
|
-
it "sets the value of a password field" do
|
282
|
-
browser.text_field(name: 'new_user_password').set('secret')
|
283
|
-
expect(browser.text_field(name: 'new_user_password').value).to eq 'secret'
|
284
|
-
end
|
285
|
-
|
286
|
-
it "sets the value when accessed through the enclosing Form" do
|
287
|
-
browser.form(id: 'new_user').text_field(name: 'new_user_password').set('secret')
|
288
|
-
expect(browser.form(id: 'new_user').text_field(name: 'new_user_password').value).to eq 'secret'
|
289
|
-
end
|
290
|
-
|
291
|
-
it "is able to set multi-byte characters" do
|
292
|
-
browser.text_field(name: "new_user_occupation").set("ijij")
|
293
|
-
expect(browser.text_field(name: "new_user_occupation").value).to eq "ijij"
|
294
|
-
end
|
295
|
-
|
296
|
-
it "sets the value to a concatenation of multiple arguments" do
|
297
|
-
browser.text_field(id: 'new_user_email').set('Bye', 'Cruel', 'World')
|
298
|
-
expect(browser.text_field(id: "new_user_email").value).to eq 'ByeCruelWorld'
|
299
|
-
end
|
300
|
-
|
301
|
-
it "sets the value to blank when no arguments are provided" do
|
302
|
-
browser.text_field(id: 'new_user_email').set
|
303
|
-
expect(browser.text_field(id: "new_user_email").value).to eq ''
|
304
|
-
end
|
305
|
-
|
306
|
-
it "raises UnknownObjectException if the text field doesn't exist" do
|
307
|
-
expect { browser.text_field(id: "no_such_id").set('secret') }.to raise_unknown_object_exception
|
308
|
-
end
|
309
|
-
end
|
310
|
-
|
311
|
-
describe "#set!" do
|
312
|
-
it "sets the value of the element" do
|
313
|
-
browser.text_field(id: 'new_user_email').set!('Bye Cruel World')
|
314
|
-
expect(browser.text_field(id: "new_user_email").value).to eq 'Bye Cruel World'
|
315
|
-
end
|
316
|
-
|
317
|
-
it "sets the value of a textarea element" do
|
318
|
-
browser.textarea(id: 'delete_user_comment').set!('Hello Cruel World')
|
319
|
-
expect(browser.textarea(id: "delete_user_comment").value).to eq 'Hello Cruel World'
|
320
|
-
end
|
321
|
-
|
322
|
-
it "fires events" do
|
323
|
-
browser.text_field(id: "new_user_username").set!("Hello World")
|
324
|
-
expect(browser.span(id: "current_length").text).to eq "11"
|
325
|
-
end
|
326
|
-
|
327
|
-
it "sets the value of a password field" do
|
328
|
-
browser.text_field(name: 'new_user_password').set!('secret')
|
329
|
-
expect(browser.text_field(name: 'new_user_password').value).to eq 'secret'
|
330
|
-
end
|
331
|
-
|
332
|
-
it "sets the value when accessed through the enclosing Form" do
|
333
|
-
browser.form(id: 'new_user').text_field(name: 'new_user_password').set!('secret')
|
334
|
-
expect(browser.form(id: 'new_user').text_field(name: 'new_user_password').value).to eq 'secret'
|
335
|
-
end
|
336
|
-
|
337
|
-
it "is able to set multi-byte characters" do
|
338
|
-
browser.text_field(name: "new_user_occupation").set!("ijij")
|
339
|
-
expect(browser.text_field(name: "new_user_occupation").value).to eq "ijij"
|
340
|
-
end
|
341
|
-
|
342
|
-
it "sets the value to a concatenation of multiple arguments" do
|
343
|
-
browser.text_field(id: 'new_user_email').set!('Bye', 'Cruel', 'World')
|
344
|
-
expect(browser.text_field(id: "new_user_email").value).to eq 'ByeCruelWorld'
|
345
|
-
end
|
346
|
-
|
347
|
-
it "sets the value to blank when no arguments are provided" do
|
348
|
-
browser.text_field(id: 'new_user_email').set!
|
349
|
-
expect(browser.text_field(id: "new_user_email").value).to eq ''
|
350
|
-
end
|
351
|
-
|
352
|
-
it "raises ArgumentError for special keys" do
|
353
|
-
expect { browser.text_field(id: 'new_user_email').set!('a', :tab) }.to raise_error(ArgumentError)
|
354
|
-
end
|
355
|
-
|
356
|
-
it "raises UnknownObjectException if the text field doesn't exist" do
|
357
|
-
expect { browser.text_field(id: "no_such_id").set!('secret') }.to raise_unknown_object_exception
|
358
|
-
end
|
359
|
-
end
|
360
|
-
end
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe "TextField" do
|
4
|
+
|
5
|
+
before :each do
|
6
|
+
browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
|
7
|
+
end
|
8
|
+
|
9
|
+
# Exists method
|
10
|
+
describe "#exists?" do
|
11
|
+
it "returns true if the element exists" do
|
12
|
+
expect(browser.text_field(id: 'new_user_email')).to exist
|
13
|
+
expect(browser.text_field(id: /new_user_email/)).to exist
|
14
|
+
expect(browser.text_field(name: 'new_user_email')).to exist
|
15
|
+
expect(browser.text_field(name: /new_user_email/)).to exist
|
16
|
+
expect(browser.text_field(value: 'Developer')).to exist
|
17
|
+
expect(browser.text_field(value: /Developer/)).to exist
|
18
|
+
expect(browser.text_field(text: 'Developer')).to exist
|
19
|
+
expect(browser.text_field(text: /Developer/)).to exist
|
20
|
+
expect(browser.text_field(class: 'name')).to exist
|
21
|
+
expect(browser.text_field(class: /name/)).to exist
|
22
|
+
expect(browser.text_field(index: 0)).to exist
|
23
|
+
expect(browser.text_field(xpath: "//input[@id='new_user_email']")).to exist
|
24
|
+
expect(browser.text_field(label: "First name")).to exist
|
25
|
+
expect(browser.text_field(label: /(Last|First) name/)).to exist
|
26
|
+
expect(browser.text_field(label: 'Without for')).to exist
|
27
|
+
expect(browser.text_field(label: /Without for/)).to exist
|
28
|
+
end
|
29
|
+
|
30
|
+
it "returns the first text field if given no args" do
|
31
|
+
expect(browser.text_field).to exist
|
32
|
+
end
|
33
|
+
|
34
|
+
it "respects text fields types" do
|
35
|
+
expect(browser.text_field.type).to eq('text')
|
36
|
+
end
|
37
|
+
|
38
|
+
it "returns true if the element exists (no type attribute)" do
|
39
|
+
expect(browser.text_field(id: 'new_user_first_name')).to exist
|
40
|
+
end
|
41
|
+
|
42
|
+
it "returns true if the element exists (invalid type attribute)" do
|
43
|
+
expect(browser.text_field(id: 'new_user_last_name')).to exist
|
44
|
+
end
|
45
|
+
|
46
|
+
it "returns true for element with upper case type" do
|
47
|
+
expect(browser.text_field(id: "new_user_email_confirm")).to exist
|
48
|
+
end
|
49
|
+
|
50
|
+
it "returns true for element with unknown type attribute" do
|
51
|
+
expect(browser.text_field(id: "unknown_text_field")).to exist
|
52
|
+
end
|
53
|
+
|
54
|
+
it "returns false if the element does not exist" do
|
55
|
+
expect(browser.text_field(id: 'no_such_id')).to_not exist
|
56
|
+
expect(browser.text_field(id: /no_such_id/)).to_not exist
|
57
|
+
expect(browser.text_field(name: 'no_such_name')).to_not exist
|
58
|
+
expect(browser.text_field(name: /no_such_name/)).to_not exist
|
59
|
+
expect(browser.text_field(value: 'no_such_value')).to_not exist
|
60
|
+
expect(browser.text_field(value: /no_such_value/)).to_not exist
|
61
|
+
expect(browser.text_field(text: 'no_such_text')).to_not exist
|
62
|
+
expect(browser.text_field(text: /no_such_text/)).to_not exist
|
63
|
+
expect(browser.text_field(class: 'no_such_class')).to_not exist
|
64
|
+
expect(browser.text_field(class: /no_such_class/)).to_not exist
|
65
|
+
expect(browser.text_field(index: 1337)).to_not exist
|
66
|
+
expect(browser.text_field(xpath: "//input[@id='no_such_id']")).to_not exist
|
67
|
+
expect(browser.text_field(label: "bad label")).to_not exist
|
68
|
+
expect(browser.text_field(label: /bad label/)).to_not exist
|
69
|
+
|
70
|
+
# input type='hidden' should not be found by #text_field
|
71
|
+
expect(browser.text_field(id: "new_user_interests_dolls")).to_not exist
|
72
|
+
end
|
73
|
+
|
74
|
+
it "raises TypeError when 'what' argument is invalid" do
|
75
|
+
expect { browser.text_field(id: 3.14).exists? }.to raise_error(TypeError)
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
# Attribute methods
|
80
|
+
describe "#id" do
|
81
|
+
it "returns the id attribute if the text field exists" do
|
82
|
+
expect(browser.text_field(index: 4).id).to eq "new_user_occupation"
|
83
|
+
end
|
84
|
+
|
85
|
+
it "raises UnknownObjectException if the text field doesn't exist" do
|
86
|
+
expect { browser.text_field(index: 1337).id }.to raise_unknown_object_exception
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
describe "#name" do
|
91
|
+
it "returns the name attribute if the text field exists" do
|
92
|
+
expect(browser.text_field(index: 3).name).to eq "new_user_email_confirm"
|
93
|
+
end
|
94
|
+
|
95
|
+
it "raises UnknownObjectException if the text field doesn't exist" do
|
96
|
+
expect { browser.text_field(index: 1337).name }.to raise_unknown_object_exception
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
describe "#title" do
|
101
|
+
it "returns the title attribute if the text field exists" do
|
102
|
+
expect(browser.text_field(id: "new_user_code").title).to eq "Your personal code"
|
103
|
+
end
|
104
|
+
|
105
|
+
it "raises UnknownObjectException if the text field doesn't exist" do
|
106
|
+
expect { browser.text_field(index: 1337).title }.to raise_unknown_object_exception
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
describe "#type" do
|
111
|
+
it "returns the type attribute if the text field exists" do
|
112
|
+
expect(browser.text_field(index: 3).type).to eq "text"
|
113
|
+
end
|
114
|
+
|
115
|
+
it "returns 'text' if the type attribute is invalid" do
|
116
|
+
expect(browser.text_field(id: 'new_user_last_name').type).to eq "text"
|
117
|
+
end
|
118
|
+
|
119
|
+
it "returns 'text' if the type attribute does not exist" do
|
120
|
+
expect(browser.text_field(id: 'new_user_first_name').type).to eq "text"
|
121
|
+
end
|
122
|
+
|
123
|
+
it "raises UnknownObjectException if the text field doesn't exist" do
|
124
|
+
expect { browser.text_field(index: 1337).type }.to raise_unknown_object_exception
|
125
|
+
end
|
126
|
+
end
|
127
|
+
|
128
|
+
describe "#value" do
|
129
|
+
it "returns the value attribute if the text field exists" do
|
130
|
+
expect(browser.text_field(name: "new_user_occupation").value).to eq "Developer"
|
131
|
+
expect(browser.text_field(index: 4).value).to eq "Developer"
|
132
|
+
expect(browser.text_field(name: /new_user_occupation/i).value).to eq "Developer"
|
133
|
+
end
|
134
|
+
|
135
|
+
it "raises UnknownObjectException if the text field doesn't exist" do
|
136
|
+
expect { browser.text_field(index: 1337).value }.to raise_unknown_object_exception
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
140
|
+
describe "#respond_to?" do
|
141
|
+
it "returns true for all attribute methods" do
|
142
|
+
expect(browser.text_field(index: 0)).to respond_to(:class_name)
|
143
|
+
expect(browser.text_field(index: 0)).to respond_to(:id)
|
144
|
+
expect(browser.text_field(index: 0)).to respond_to(:name)
|
145
|
+
expect(browser.text_field(index: 0)).to respond_to(:title)
|
146
|
+
expect(browser.text_field(index: 0)).to respond_to(:type)
|
147
|
+
expect(browser.text_field(index: 0)).to respond_to(:value)
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
151
|
+
# Access methods
|
152
|
+
describe "#enabled?" do
|
153
|
+
it "returns true for enabled text fields" do
|
154
|
+
expect(browser.text_field(name: "new_user_occupation")).to be_enabled
|
155
|
+
expect(browser.text_field(id: "new_user_email")).to be_enabled
|
156
|
+
end
|
157
|
+
|
158
|
+
it "returns false for disabled text fields" do
|
159
|
+
expect(browser.text_field(name: "new_user_species")).to_not be_enabled
|
160
|
+
end
|
161
|
+
|
162
|
+
it "raises UnknownObjectException if the text field doesn't exist" do
|
163
|
+
expect { browser.text_field(id: "no_such_id").enabled? }.to raise_unknown_object_exception
|
164
|
+
end
|
165
|
+
end
|
166
|
+
|
167
|
+
describe "#disabled?" do
|
168
|
+
it "returns true if the text field is disabled" do
|
169
|
+
expect(browser.text_field(id: 'new_user_species')).to be_disabled
|
170
|
+
end
|
171
|
+
|
172
|
+
it "returns false if the text field is enabled" do
|
173
|
+
expect(browser.text_field(index: 0)).to_not be_disabled
|
174
|
+
end
|
175
|
+
|
176
|
+
it "raises UnknownObjectException if the text field doesn't exist" do
|
177
|
+
expect { browser.text_field(index: 1337).disabled? }.to raise_unknown_object_exception
|
178
|
+
end
|
179
|
+
end
|
180
|
+
|
181
|
+
describe "#readonly?" do
|
182
|
+
it "returns true for read-only text fields" do
|
183
|
+
expect(browser.text_field(name: "new_user_code")).to be_readonly
|
184
|
+
expect(browser.text_field(id: "new_user_code")).to be_readonly
|
185
|
+
end
|
186
|
+
|
187
|
+
it "returns false for writable text fields" do
|
188
|
+
expect(browser.text_field(name: "new_user_email")).to_not be_readonly
|
189
|
+
end
|
190
|
+
|
191
|
+
it "raises UnknownObjectException if the text field doesn't exist" do
|
192
|
+
expect { browser.text_field(id: 'no_such_id').readonly? }.to raise_unknown_object_exception
|
193
|
+
end
|
194
|
+
|
195
|
+
it "raises UnknownReadOnlyException if sending keys to readonly element" do
|
196
|
+
expect { browser.text_field(id: 'new_user_code').set 'foo' }.to raise_object_read_only_exception
|
197
|
+
end
|
198
|
+
end
|
199
|
+
|
200
|
+
# Manipulation methods
|
201
|
+
not_compliant_on :safari do
|
202
|
+
describe "#append" do
|
203
|
+
it "appends the text to the text field" do
|
204
|
+
browser.text_field(name: "new_user_occupation").append(" Append This")
|
205
|
+
expect(browser.text_field(name: "new_user_occupation").value).to eq "Developer Append This"
|
206
|
+
end
|
207
|
+
|
208
|
+
it "appends multi-byte characters" do
|
209
|
+
browser.text_field(name: "new_user_occupation").append(" ijij")
|
210
|
+
expect(browser.text_field(name: "new_user_occupation").value).to eq "Developer ijij"
|
211
|
+
end
|
212
|
+
|
213
|
+
it "raises ObjectReadOnlyException if the object is read only" do
|
214
|
+
expect { browser.text_field(id: "new_user_code").append("Append This") }.to raise_object_read_only_exception
|
215
|
+
end
|
216
|
+
|
217
|
+
it "raises ObjectDisabledException if the object is disabled" do
|
218
|
+
expect { browser.text_field(name: "new_user_species").append("Append This") }.to raise_object_disabled_exception
|
219
|
+
end
|
220
|
+
|
221
|
+
it "raises UnknownObjectException if the object doesn't exist" do
|
222
|
+
expect { browser.text_field(name: "no_such_name").append("Append This") }.to raise_unknown_object_exception
|
223
|
+
end
|
224
|
+
end
|
225
|
+
end
|
226
|
+
|
227
|
+
describe "#clear" do
|
228
|
+
it "removes all text from the text field" do
|
229
|
+
browser.text_field(name: "new_user_occupation").clear
|
230
|
+
expect(browser.text_field(name: "new_user_occupation").value).to be_empty
|
231
|
+
browser.textarea(id: "delete_user_comment").clear
|
232
|
+
expect(browser.textarea(id: "delete_user_comment").value).to be_empty
|
233
|
+
end
|
234
|
+
|
235
|
+
it "raises UnknownObjectException if the text field doesn't exist" do
|
236
|
+
expect { browser.text_field(id: "no_such_id").clear }.to raise_unknown_object_exception
|
237
|
+
end
|
238
|
+
|
239
|
+
it "raises ObjectReadOnlyException if the object is read only" do
|
240
|
+
expect { browser.text_field(id: "new_user_code").clear }.to raise_object_read_only_exception
|
241
|
+
end
|
242
|
+
end
|
243
|
+
|
244
|
+
describe "#value=" do
|
245
|
+
it "sets the value of the element" do
|
246
|
+
browser.text_field(id: 'new_user_email').value = 'Hello Cruel World'
|
247
|
+
expect(browser.text_field(id: "new_user_email").value).to eq 'Hello Cruel World'
|
248
|
+
end
|
249
|
+
|
250
|
+
it "is able to set multi-byte characters" do
|
251
|
+
browser.text_field(name: "new_user_occupation").value = "ijij"
|
252
|
+
expect(browser.text_field(name: "new_user_occupation").value).to eq "ijij"
|
253
|
+
end
|
254
|
+
|
255
|
+
it "sets the value of a textarea element" do
|
256
|
+
browser.textarea(id: 'delete_user_comment').value = 'Hello Cruel World'
|
257
|
+
expect(browser.textarea(id: "delete_user_comment").value).to eq 'Hello Cruel World'
|
258
|
+
end
|
259
|
+
|
260
|
+
it "raises UnknownObjectException if the text field doesn't exist" do
|
261
|
+
expect { browser.text_field(name: "no_such_name").value = 'yo' }.to raise_unknown_object_exception
|
262
|
+
end
|
263
|
+
end
|
264
|
+
|
265
|
+
describe "#set" do
|
266
|
+
it "sets the value of the element" do
|
267
|
+
browser.text_field(id: 'new_user_email').set('Bye Cruel World')
|
268
|
+
expect(browser.text_field(id: "new_user_email").value).to eq 'Bye Cruel World'
|
269
|
+
end
|
270
|
+
|
271
|
+
it "sets the value of a textarea element" do
|
272
|
+
browser.textarea(id: 'delete_user_comment').set('Hello Cruel World')
|
273
|
+
expect(browser.textarea(id: "delete_user_comment").value).to eq 'Hello Cruel World'
|
274
|
+
end
|
275
|
+
|
276
|
+
it "fires events" do
|
277
|
+
browser.text_field(id: "new_user_username").set("Hello World")
|
278
|
+
expect(browser.span(id: "current_length").text).to eq "11"
|
279
|
+
end
|
280
|
+
|
281
|
+
it "sets the value of a password field" do
|
282
|
+
browser.text_field(name: 'new_user_password').set('secret')
|
283
|
+
expect(browser.text_field(name: 'new_user_password').value).to eq 'secret'
|
284
|
+
end
|
285
|
+
|
286
|
+
it "sets the value when accessed through the enclosing Form" do
|
287
|
+
browser.form(id: 'new_user').text_field(name: 'new_user_password').set('secret')
|
288
|
+
expect(browser.form(id: 'new_user').text_field(name: 'new_user_password').value).to eq 'secret'
|
289
|
+
end
|
290
|
+
|
291
|
+
it "is able to set multi-byte characters" do
|
292
|
+
browser.text_field(name: "new_user_occupation").set("ijij")
|
293
|
+
expect(browser.text_field(name: "new_user_occupation").value).to eq "ijij"
|
294
|
+
end
|
295
|
+
|
296
|
+
it "sets the value to a concatenation of multiple arguments" do
|
297
|
+
browser.text_field(id: 'new_user_email').set('Bye', 'Cruel', 'World')
|
298
|
+
expect(browser.text_field(id: "new_user_email").value).to eq 'ByeCruelWorld'
|
299
|
+
end
|
300
|
+
|
301
|
+
it "sets the value to blank when no arguments are provided" do
|
302
|
+
browser.text_field(id: 'new_user_email').set
|
303
|
+
expect(browser.text_field(id: "new_user_email").value).to eq ''
|
304
|
+
end
|
305
|
+
|
306
|
+
it "raises UnknownObjectException if the text field doesn't exist" do
|
307
|
+
expect { browser.text_field(id: "no_such_id").set('secret') }.to raise_unknown_object_exception
|
308
|
+
end
|
309
|
+
end
|
310
|
+
|
311
|
+
describe "#set!" do
|
312
|
+
it "sets the value of the element" do
|
313
|
+
browser.text_field(id: 'new_user_email').set!('Bye Cruel World')
|
314
|
+
expect(browser.text_field(id: "new_user_email").value).to eq 'Bye Cruel World'
|
315
|
+
end
|
316
|
+
|
317
|
+
it "sets the value of a textarea element" do
|
318
|
+
browser.textarea(id: 'delete_user_comment').set!('Hello Cruel World')
|
319
|
+
expect(browser.textarea(id: "delete_user_comment").value).to eq 'Hello Cruel World'
|
320
|
+
end
|
321
|
+
|
322
|
+
it "fires events" do
|
323
|
+
browser.text_field(id: "new_user_username").set!("Hello World")
|
324
|
+
expect(browser.span(id: "current_length").text).to eq "11"
|
325
|
+
end
|
326
|
+
|
327
|
+
it "sets the value of a password field" do
|
328
|
+
browser.text_field(name: 'new_user_password').set!('secret')
|
329
|
+
expect(browser.text_field(name: 'new_user_password').value).to eq 'secret'
|
330
|
+
end
|
331
|
+
|
332
|
+
it "sets the value when accessed through the enclosing Form" do
|
333
|
+
browser.form(id: 'new_user').text_field(name: 'new_user_password').set!('secret')
|
334
|
+
expect(browser.form(id: 'new_user').text_field(name: 'new_user_password').value).to eq 'secret'
|
335
|
+
end
|
336
|
+
|
337
|
+
it "is able to set multi-byte characters" do
|
338
|
+
browser.text_field(name: "new_user_occupation").set!("ijij")
|
339
|
+
expect(browser.text_field(name: "new_user_occupation").value).to eq "ijij"
|
340
|
+
end
|
341
|
+
|
342
|
+
it "sets the value to a concatenation of multiple arguments" do
|
343
|
+
browser.text_field(id: 'new_user_email').set!('Bye', 'Cruel', 'World')
|
344
|
+
expect(browser.text_field(id: "new_user_email").value).to eq 'ByeCruelWorld'
|
345
|
+
end
|
346
|
+
|
347
|
+
it "sets the value to blank when no arguments are provided" do
|
348
|
+
browser.text_field(id: 'new_user_email').set!
|
349
|
+
expect(browser.text_field(id: "new_user_email").value).to eq ''
|
350
|
+
end
|
351
|
+
|
352
|
+
it "raises ArgumentError for special keys" do
|
353
|
+
expect { browser.text_field(id: 'new_user_email').set!('a', :tab) }.to raise_error(ArgumentError)
|
354
|
+
end
|
355
|
+
|
356
|
+
it "raises UnknownObjectException if the text field doesn't exist" do
|
357
|
+
expect { browser.text_field(id: "no_such_id").set!('secret') }.to raise_unknown_object_exception
|
358
|
+
end
|
359
|
+
end
|
360
|
+
end
|