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.
Files changed (200) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +5 -2
  3. data/CHANGES.md +10 -1
  4. data/Gemfile +4 -0
  5. data/README.md +37 -23
  6. data/Rakefile +6 -10
  7. data/appveyor.yml +13 -0
  8. data/lib/watir.rb +20 -21
  9. data/lib/watir/alert.rb +21 -5
  10. data/lib/watir/browser.rb +9 -3
  11. data/lib/watir/elements/checkbox.rb +0 -1
  12. data/lib/watir/elements/element.rb +92 -50
  13. data/lib/watir/elements/form.rb +1 -2
  14. data/lib/watir/elements/iframe.rb +6 -2
  15. data/lib/watir/elements/image.rb +1 -1
  16. data/lib/watir/elements/option.rb +0 -1
  17. data/lib/watir/elements/radio.rb +0 -1
  18. data/lib/watir/elements/select.rb +1 -10
  19. data/lib/watir/extensions/select_text.rb +1 -1
  20. data/lib/watir/legacy_wait.rb +126 -0
  21. data/lib/watir/locators/text_field/locator.rb +0 -3
  22. data/lib/watir/locators/text_field/selector_builder.rb +1 -4
  23. data/lib/watir/locators/text_field/selector_builder/xpath.rb +0 -2
  24. data/lib/watir/locators/text_field/validator.rb +1 -9
  25. data/lib/watir/row_container.rb +1 -1
  26. data/lib/watir/user_editable.rb +7 -5
  27. data/lib/watir/wait.rb +56 -135
  28. data/lib/watir/wait/timer.rb +29 -2
  29. data/lib/watir/window.rb +11 -1
  30. data/lib/watirspec.rb +81 -0
  31. data/lib/watirspec/guards.rb +58 -0
  32. data/lib/watirspec/implementation.rb +33 -0
  33. data/lib/watirspec/rake_tasks.rb +115 -0
  34. data/lib/watirspec/runner.rb +53 -0
  35. data/lib/watirspec/server.rb +99 -0
  36. data/lib/watirspec/server/app.rb +62 -0
  37. data/spec/browser_spec.rb +5 -5
  38. data/spec/click_spec.rb +1 -1
  39. data/spec/container_spec.rb +1 -1
  40. data/spec/element_locator_spec.rb +1 -1
  41. data/spec/element_spec.rb +20 -34
  42. data/spec/implementation_spec.rb +24 -0
  43. data/spec/input_spec.rb +1 -1
  44. data/spec/spec_helper.rb +35 -3
  45. data/spec/special_chars_spec.rb +1 -1
  46. data/spec/watirspec/.gitignore +2 -0
  47. data/spec/watirspec/after_hooks_spec.rb +179 -0
  48. data/spec/watirspec/alert_spec.rb +101 -0
  49. data/spec/watirspec/browser_spec.rb +291 -0
  50. data/spec/watirspec/cookies_spec.rb +147 -0
  51. data/spec/watirspec/drag_and_drop_spec.rb +49 -0
  52. data/spec/watirspec/element_hidden_spec.rb +65 -0
  53. data/spec/watirspec/elements/area_spec.rb +76 -0
  54. data/spec/watirspec/elements/areas_spec.rb +42 -0
  55. data/spec/watirspec/elements/button_spec.rb +270 -0
  56. data/spec/watirspec/elements/buttons_spec.rb +55 -0
  57. data/spec/watirspec/elements/checkbox_spec.rb +279 -0
  58. data/spec/watirspec/elements/checkboxes_spec.rb +44 -0
  59. data/spec/watirspec/elements/collections_spec.rb +16 -0
  60. data/spec/watirspec/elements/dd_spec.rb +126 -0
  61. data/spec/watirspec/elements/dds_spec.rb +42 -0
  62. data/spec/watirspec/elements/del_spec.rb +128 -0
  63. data/spec/watirspec/elements/dels_spec.rb +40 -0
  64. data/spec/watirspec/elements/div_spec.rb +199 -0
  65. data/spec/watirspec/elements/divs_spec.rb +42 -0
  66. data/spec/watirspec/elements/dl_spec.rb +144 -0
  67. data/spec/watirspec/elements/dls_spec.rb +43 -0
  68. data/spec/watirspec/elements/dt_spec.rb +126 -0
  69. data/spec/watirspec/elements/dts_spec.rb +42 -0
  70. data/spec/watirspec/elements/element_spec.rb +361 -0
  71. data/spec/watirspec/elements/elements_spec.rb +15 -0
  72. data/spec/watirspec/elements/em_spec.rb +100 -0
  73. data/spec/watirspec/elements/ems_spec.rb +43 -0
  74. data/spec/watirspec/elements/filefield_spec.rb +181 -0
  75. data/spec/watirspec/elements/filefields_spec.rb +43 -0
  76. data/spec/watirspec/elements/font_spec.rb +29 -0
  77. data/spec/watirspec/elements/form_spec.rb +70 -0
  78. data/spec/watirspec/elements/forms_spec.rb +44 -0
  79. data/spec/watirspec/elements/frame_spec.rb +121 -0
  80. data/spec/watirspec/elements/frames_spec.rb +41 -0
  81. data/spec/watirspec/elements/hidden_spec.rb +102 -0
  82. data/spec/watirspec/elements/hiddens_spec.rb +43 -0
  83. data/spec/watirspec/elements/hn_spec.rb +96 -0
  84. data/spec/watirspec/elements/hns_spec.rb +38 -0
  85. data/spec/watirspec/elements/iframe_spec.rb +174 -0
  86. data/spec/watirspec/elements/iframes_spec.rb +47 -0
  87. data/spec/watirspec/elements/image_spec.rb +164 -0
  88. data/spec/watirspec/elements/images_spec.rb +40 -0
  89. data/spec/watirspec/elements/ins_spec.rb +129 -0
  90. data/spec/watirspec/elements/inses_spec.rb +40 -0
  91. data/spec/watirspec/elements/label_spec.rb +79 -0
  92. data/spec/watirspec/elements/labels_spec.rb +40 -0
  93. data/spec/watirspec/elements/li_spec.rb +115 -0
  94. data/spec/watirspec/elements/link_spec.rb +174 -0
  95. data/spec/watirspec/elements/links_spec.rb +44 -0
  96. data/spec/watirspec/elements/lis_spec.rb +42 -0
  97. data/spec/watirspec/elements/map_spec.rb +79 -0
  98. data/spec/watirspec/elements/maps_spec.rb +41 -0
  99. data/spec/watirspec/elements/meta_spec.rb +23 -0
  100. data/spec/watirspec/elements/metas_spec.rb +40 -0
  101. data/spec/watirspec/elements/ol_spec.rb +89 -0
  102. data/spec/watirspec/elements/ols_spec.rb +40 -0
  103. data/spec/watirspec/elements/option_spec.rb +152 -0
  104. data/spec/watirspec/elements/p_spec.rb +115 -0
  105. data/spec/watirspec/elements/pre_spec.rb +115 -0
  106. data/spec/watirspec/elements/pres_spec.rb +40 -0
  107. data/spec/watirspec/elements/ps_spec.rb +40 -0
  108. data/spec/watirspec/elements/radio_spec.rb +263 -0
  109. data/spec/watirspec/elements/radios_spec.rb +43 -0
  110. data/spec/watirspec/elements/select_list_spec.rb +379 -0
  111. data/spec/watirspec/elements/select_lists_spec.rb +46 -0
  112. data/spec/watirspec/elements/span_spec.rb +129 -0
  113. data/spec/watirspec/elements/spans_spec.rb +40 -0
  114. data/spec/watirspec/elements/strong_spec.rb +92 -0
  115. data/spec/watirspec/elements/strongs_spec.rb +43 -0
  116. data/spec/watirspec/elements/table_nesting_spec.rb +51 -0
  117. data/spec/watirspec/elements/table_spec.rb +146 -0
  118. data/spec/watirspec/elements/tables_spec.rb +42 -0
  119. data/spec/watirspec/elements/tbody_spec.rb +96 -0
  120. data/spec/watirspec/elements/tbodys_spec.rb +62 -0
  121. data/spec/watirspec/elements/td_spec.rb +71 -0
  122. data/spec/watirspec/elements/tds_spec.rb +53 -0
  123. data/spec/watirspec/elements/text_field_spec.rb +302 -0
  124. data/spec/watirspec/elements/text_fields_spec.rb +44 -0
  125. data/spec/watirspec/elements/textarea_spec.rb +26 -0
  126. data/spec/watirspec/elements/textareas_spec.rb +24 -0
  127. data/spec/watirspec/elements/tfoot_spec.rb +91 -0
  128. data/spec/watirspec/elements/tfoots_spec.rb +68 -0
  129. data/spec/watirspec/elements/thead_spec.rb +91 -0
  130. data/spec/watirspec/elements/theads_spec.rb +68 -0
  131. data/spec/watirspec/elements/tr_spec.rb +80 -0
  132. data/spec/watirspec/elements/trs_spec.rb +61 -0
  133. data/spec/watirspec/elements/ul_spec.rb +79 -0
  134. data/spec/watirspec/elements/uls_spec.rb +39 -0
  135. data/spec/watirspec/html/alerts.html +12 -0
  136. data/spec/watirspec/html/aria_attributes.html +9 -0
  137. data/spec/watirspec/html/class_locator.html +8 -0
  138. data/spec/watirspec/html/clicks.html +19 -0
  139. data/spec/watirspec/html/closeable.html +13 -0
  140. data/spec/watirspec/html/collections.html +15 -0
  141. data/spec/watirspec/html/css/jquery-ui-1.8.17.custom.css +287 -0
  142. data/spec/watirspec/html/data_attributes.html +9 -0
  143. data/spec/watirspec/html/definition_lists.html +48 -0
  144. data/spec/watirspec/html/drag_and_drop.html +106 -0
  145. data/spec/watirspec/html/font.html +10 -0
  146. data/spec/watirspec/html/forms_with_input_elements.html +170 -0
  147. data/spec/watirspec/html/frame_1.html +22 -0
  148. data/spec/watirspec/html/frame_2.html +16 -0
  149. data/spec/watirspec/html/frames.html +11 -0
  150. data/spec/watirspec/html/hover.html +12 -0
  151. data/spec/watirspec/html/iframe_1.html +22 -0
  152. data/spec/watirspec/html/iframes.html +12 -0
  153. data/spec/watirspec/html/images.html +28 -0
  154. data/spec/watirspec/html/images/1.gif +0 -0
  155. data/spec/watirspec/html/images/2.gif +0 -0
  156. data/spec/watirspec/html/images/3.gif +0 -0
  157. data/spec/watirspec/html/images/button.png +0 -0
  158. data/spec/watirspec/html/images/circle.png +0 -0
  159. data/spec/watirspec/html/images/map.gif +0 -0
  160. data/spec/watirspec/html/images/map2.gif +0 -0
  161. data/spec/watirspec/html/images/minus.gif +0 -0
  162. data/spec/watirspec/html/images/originaltriangle.png +0 -0
  163. data/spec/watirspec/html/images/plus.gif +0 -0
  164. data/spec/watirspec/html/images/square.png +0 -0
  165. data/spec/watirspec/html/images/triangle.png +0 -0
  166. data/spec/watirspec/html/inner_outer.html +5 -0
  167. data/spec/watirspec/html/javascript/helpers.js +16 -0
  168. data/spec/watirspec/html/javascript/jquery-1.7.1.min.js +4 -0
  169. data/spec/watirspec/html/javascript/jquery-ui-1.8.17.custom.min.js +68 -0
  170. data/spec/watirspec/html/keylogger.html +15 -0
  171. data/spec/watirspec/html/modal_dialog.html +9 -0
  172. data/spec/watirspec/html/multiple_ids.html +14 -0
  173. data/spec/watirspec/html/nested_frame_1.html +1 -0
  174. data/spec/watirspec/html/nested_frame_2.html +9 -0
  175. data/spec/watirspec/html/nested_frame_3.html +14 -0
  176. data/spec/watirspec/html/nested_frames.html +10 -0
  177. data/spec/watirspec/html/nested_iframe_2.html +12 -0
  178. data/spec/watirspec/html/nested_iframes.html +9 -0
  179. data/spec/watirspec/html/nested_tables.html +203 -0
  180. data/spec/watirspec/html/non_control_elements.html +135 -0
  181. data/spec/watirspec/html/removed_element.html +24 -0
  182. data/spec/watirspec/html/right_click.html +11 -0
  183. data/spec/watirspec/html/special_chars.html +12 -0
  184. data/spec/watirspec/html/tables.html +121 -0
  185. data/spec/watirspec/html/timeout_window_location.html +19 -0
  186. data/spec/watirspec/html/uneven_table.html +20 -0
  187. data/spec/watirspec/html/wait.html +65 -0
  188. data/spec/watirspec/html/watirspec.css +0 -0
  189. data/spec/watirspec/html/window_switching.html +12 -0
  190. data/spec/watirspec/relaxed_locate_spec.rb +214 -0
  191. data/spec/watirspec/screenshot_spec.rb +29 -0
  192. data/spec/watirspec/wait_spec.rb +304 -0
  193. data/spec/watirspec/window_switching_spec.rb +411 -0
  194. data/spec/{implementation.rb → watirspec_helper.rb} +13 -13
  195. data/support/appveyor.cmd +9 -0
  196. data/support/doctest_helper.rb +5 -1
  197. data/support/travis.sh +0 -1
  198. data/watir.gemspec +3 -4
  199. metadata +323 -30
  200. data/.gitmodules +0 -3
@@ -0,0 +1,44 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "Forms" 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.forms(method: "post").to_a).to eq [browser.form(method: "post")]
12
+ end
13
+ end
14
+
15
+ describe "#length" do
16
+ it "returns the number of forms in the container" do
17
+ expect(browser.forms.length).to eq 2
18
+ end
19
+ end
20
+
21
+ describe "#[]n" do
22
+ it "provides access to the nth form" do
23
+ expect(browser.forms[0].action).to match(/post_to_me$/) # varies between browsers
24
+ expect(browser.forms[0].attribute_value('method')).to eq 'post'
25
+ end
26
+ end
27
+
28
+ describe "#each" do
29
+ it "iterates through forms correctly" do
30
+ count = 0
31
+
32
+ browser.forms.each_with_index do |f, index|
33
+ expect(f.name).to eq browser.form(index: index).name
34
+ expect(f.id).to eq browser.form(index: index).id
35
+ expect(f.class_name).to eq browser.form(index: index).class_name
36
+
37
+ count += 1
38
+ end
39
+
40
+ expect(count).to be > 0
41
+ end
42
+ end
43
+
44
+ end
@@ -0,0 +1,121 @@
1
+ require "watirspec_helper"
2
+
3
+ #
4
+ # TODO: fix duplication with iframe_spec
5
+ #
6
+
7
+ describe "Frame" do
8
+
9
+ before :each do
10
+ browser.goto(WatirSpec.url_for("frames.html"))
11
+ end
12
+
13
+ it "handles crossframe javascript" do
14
+ browser.goto WatirSpec.url_for("frames.html")
15
+
16
+ expect(browser.frame(id: "frame_1").text_field(name: 'senderElement').value).to eq 'send_this_value'
17
+ expect(browser.frame(id: "frame_2").text_field(name: 'recieverElement').value).to eq 'old_value'
18
+ browser.frame(id: "frame_1").button(id: 'send').click
19
+ expect(browser.frame(id: "frame_2").text_field(name: 'recieverElement').value).to eq 'send_this_value'
20
+ end
21
+
22
+ describe "#exist?" do
23
+ it "returns true if the frame exists" do
24
+ expect(browser.frame(id: "frame_1")).to exist
25
+ expect(browser.frame(name: "frame1")).to exist
26
+ expect(browser.frame(index: 0)).to exist
27
+ expect(browser.frame(class: "half")).to exist
28
+ expect(browser.frame(xpath: "//frame[@id='frame_1']")).to exist
29
+ expect(browser.frame(src: "frame_1.html")).to exist
30
+ expect(browser.frame(id: /frame/)).to exist
31
+ expect(browser.frame(name: /frame/)).to exist
32
+ expect(browser.frame(src: /frame_1/)).to exist
33
+ expect(browser.frame(class: /half/)).to exist
34
+ end
35
+
36
+ it "returns the first frame if given no args" do
37
+ expect(browser.frame).to exist
38
+ end
39
+
40
+ it "returns false if the frame doesn't exist" do
41
+ expect(browser.frame(id: "no_such_id")).to_not exist
42
+ expect(browser.frame(name: "no_such_text")).to_not exist
43
+ expect(browser.frame(index: 1337)).to_not exist
44
+ expect(browser.frame(src: "no_such_src")).to_not exist
45
+ expect(browser.frame(class: "no_such_class")).to_not exist
46
+ expect(browser.frame(id: /no_such_id/)).to_not exist
47
+ expect(browser.frame(name: /no_such_text/)).to_not exist
48
+ expect(browser.frame(src: /no_such_src/)).to_not exist
49
+ expect(browser.frame(class: /no_such_class/)).to_not exist
50
+ expect(browser.frame(xpath: "//frame[@id='no_such_id']")).to_not exist
51
+ end
52
+
53
+ bug "https://github.com/detro/ghostdriver/issues/159", :phantomjs do
54
+ bug "https://bugzilla.mozilla.org/show_bug.cgi?id=1255946", :firefox do
55
+ it "handles nested frames" do
56
+ browser.goto(WatirSpec.url_for("nested_frames.html"))
57
+
58
+ browser.frame(id: "two").frame(id: "three").link(id: "four").click
59
+
60
+ Watir::Wait.until { browser.title == "definition_lists" }
61
+ end
62
+ end
63
+ end
64
+
65
+ it "raises TypeError when 'what' argument is invalid" do
66
+ expect { browser.frame(id: 3.14).exists? }.to raise_error(TypeError)
67
+ end
68
+
69
+ it "raises MissingWayOfFindingObjectException when 'how' argument is invalid" do
70
+ expect { browser.frame(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
71
+ end
72
+ end
73
+
74
+ it "raises UnknownFrameException when accessing elements inside non-existing frame" do
75
+ expect { browser.frame(name: "no_such_name").p(index: 0).id }.to raise_unknown_frame_exception
76
+ end
77
+
78
+ it "raises UnknownFrameException when accessing a non-existing frame" do
79
+ expect { browser.frame(name: "no_such_name").id }.to raise_unknown_frame_exception
80
+ end
81
+
82
+ it "raises UnknownFrameException when accessing a non-existing subframe" do
83
+ expect { browser.frame(name: "frame1").frame(name: "no_such_name").id }.to raise_unknown_frame_exception
84
+ end
85
+
86
+ it "raises UnknownObjectException when accessing a non-existing element inside an existing frame" do
87
+ expect { browser.frame(index: 0).p(index: 1337).id }.to raise_unknown_object_exception
88
+ end
89
+
90
+ it "raises NoMethodError when trying to access attributes it doesn't have" do
91
+ expect { browser.frame(index: 0).foo }.to raise_error(NoMethodError)
92
+ end
93
+
94
+ it "is able to set a field" do
95
+ browser.frame(index: 0).text_field(name: 'senderElement').set("new value")
96
+ expect(browser.frame(index: 0).text_field(name: 'senderElement').value).to eq "new value"
97
+ end
98
+
99
+ it "can access the frame's parent element after use" do
100
+ el = browser.frameset
101
+ el.frame.text_field.value
102
+ expect(el.attribute_value("cols")).to be_kind_of(String)
103
+ end
104
+
105
+ describe "#execute_script" do
106
+ it "executes the given javascript in the specified frame" do
107
+ frame = browser.frame(index: 0)
108
+ expect(frame.div(id: 'set_by_js').text).to eq ""
109
+ frame.execute_script(%Q{document.getElementById('set_by_js').innerHTML = 'Art consists of limitation. The most beautiful part of every picture is the frame.'})
110
+ expect(frame.div(id: 'set_by_js').text).to eq "Art consists of limitation. The most beautiful part of every picture is the frame."
111
+ end
112
+ end
113
+
114
+ describe "#html" do
115
+ it "returns the full HTML source of the frame" do
116
+ browser.goto WatirSpec.url_for("frames.html")
117
+ expect(browser.frame.html.downcase).to include("<title>frame 1</title>")
118
+ end
119
+ end
120
+
121
+ end
@@ -0,0 +1,41 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "Frames" do
4
+
5
+ before :each do
6
+ browser.goto(WatirSpec.url_for("frames.html"))
7
+ end
8
+
9
+ describe "with selectors" do
10
+ it "returns the matching elements" do
11
+ expect(browser.frames(name: "frame2").to_a).to eq [browser.frame(name: "frame2")]
12
+ end
13
+ end
14
+
15
+ describe "#length" do
16
+ it "returns the correct number of frames" do
17
+ expect(browser.frames.length).to eq 2
18
+ end
19
+ end
20
+
21
+ describe "#[]" do
22
+ it "returns the frame at the given index" do
23
+ expect(browser.frames[0].id).to eq "frame_1"
24
+ end
25
+ end
26
+
27
+ describe "#each" do
28
+ it "iterates through frames correctly" do
29
+ count = 0
30
+
31
+ browser.frames.each_with_index do |f, index|
32
+ expect(f.name).to eq browser.frame(index: index).name
33
+ expect(f.id).to eq browser.frame(index: index).id
34
+ count += 1
35
+ end
36
+
37
+ expect(count).to be > 0
38
+ end
39
+ end
40
+ end
41
+
@@ -0,0 +1,102 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "Hidden" do
4
+
5
+ before :each do
6
+ browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
7
+ end
8
+
9
+ # Exist method
10
+ describe "#exists?" do
11
+ it "returns true if the element exists" do
12
+ expect(browser.hidden(id: 'new_user_interests_dolls')).to exist
13
+ expect(browser.hidden(id: /new_user_interests_dolls/)).to exist
14
+ expect(browser.hidden(name: 'new_user_interests')).to exist
15
+ expect(browser.hidden(name: /new_user_interests/)).to exist
16
+ expect(browser.hidden(value: 'dolls')).to exist
17
+ expect(browser.hidden(value: /dolls/)).to exist
18
+ expect(browser.hidden(class: 'fun')).to exist
19
+ expect(browser.hidden(class: /fun/)).to exist
20
+ expect(browser.hidden(index: 0)).to exist
21
+ expect(browser.hidden(xpath: "//input[@id='new_user_interests_dolls']")).to exist
22
+ end
23
+
24
+ it "returns the first hidden if given no args" do
25
+ expect(browser.hidden).to exist
26
+ end
27
+
28
+ it "returns false if the element does not exist" do
29
+ expect(browser.hidden(id: 'no_such_id')).to_not exist
30
+ expect(browser.hidden(id: /no_such_id/)).to_not exist
31
+ expect(browser.hidden(name: 'no_such_name')).to_not exist
32
+ expect(browser.hidden(name: /no_such_name/)).to_not exist
33
+ expect(browser.hidden(value: 'no_such_value')).to_not exist
34
+ expect(browser.hidden(value: /no_such_value/)).to_not exist
35
+ expect(browser.hidden(text: 'no_such_text')).to_not exist
36
+ expect(browser.hidden(text: /no_such_text/)).to_not exist
37
+ expect(browser.hidden(class: 'no_such_class')).to_not exist
38
+ expect(browser.hidden(class: /no_such_class/)).to_not exist
39
+ expect(browser.hidden(index: 1337)).to_not exist
40
+ expect(browser.hidden(xpath: "//input[@id='no_such_id']")).to_not exist
41
+ end
42
+
43
+ it "raises TypeError when 'what' argument is invalid" do
44
+ expect { browser.hidden(id: 3.14).exists? }.to raise_error(TypeError)
45
+ end
46
+
47
+ it "raises MissingWayOfFindingObjectException when 'how' argument is invalid" do
48
+ expect { browser.hidden(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
49
+ end
50
+ end
51
+
52
+ # Attribute methods
53
+ describe "#id" do
54
+ it "returns the id attribute if the text field exists" do
55
+ expect(browser.hidden(index: 1).id).to eq "new_user_interests_dolls"
56
+ end
57
+
58
+ it "raises UnknownObjectException if the text field doesn't exist" do
59
+ expect { browser.hidden(index: 1337).id }.to raise_unknown_object_exception
60
+ end
61
+ end
62
+
63
+ describe "#name" do
64
+ it "returns the name attribute if the text field exists" do
65
+ expect(browser.hidden(index: 1).name).to eq "new_user_interests"
66
+ end
67
+
68
+ it "raises UnknownObjectException if the text field doesn't exist" do
69
+ expect { browser.hidden(index: 1337).name }.to raise_unknown_object_exception
70
+ end
71
+ end
72
+
73
+ describe "#type" do
74
+ it "returns the type attribute if the text field exists" do
75
+ expect(browser.hidden(index: 1).type).to eq "hidden"
76
+ end
77
+
78
+ it "raises UnknownObjectException if the text field doesn't exist" do
79
+ expect { browser.hidden(index: 1337).type }.to raise_unknown_object_exception
80
+ end
81
+ end
82
+
83
+ describe "#value" do
84
+ it "returns the value attribute if the text field exists" do
85
+ expect(browser.hidden(index: 1).value).to eq "dolls"
86
+ end
87
+
88
+ it "raises UnknownObjectException if the text field doesn't exist" do
89
+ expect { browser.hidden(index: 1337).value }.to raise_unknown_object_exception
90
+ end
91
+ end
92
+
93
+ describe "#respond_to?" do
94
+ it "returns true for all attribute methods" do
95
+ expect(browser.hidden(index: 1)).to respond_to(:id)
96
+ expect(browser.hidden(index: 1)).to respond_to(:name)
97
+ expect(browser.hidden(index: 1)).to respond_to(:type)
98
+ expect(browser.hidden(index: 1)).to respond_to(:value)
99
+ end
100
+ end
101
+
102
+ end
@@ -0,0 +1,43 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "Hiddens" 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.hiddens(value: "dolls").to_a).to eq [browser.hidden(value: "dolls")]
12
+ end
13
+ end
14
+
15
+ describe "#length" do
16
+ it "returns the number of hiddens" do
17
+ expect(browser.hiddens.length).to eq 2
18
+ end
19
+ end
20
+
21
+ describe "#[]" do
22
+ it "returns the Hidden at the given index" do
23
+ expect(browser.hiddens[1].id).to eq "new_user_interests_dolls"
24
+ end
25
+ end
26
+
27
+ describe "#each" do
28
+ it "iterates through hiddens correctly" do
29
+ count = 0
30
+
31
+ browser.hiddens.each_with_index do |h, index|
32
+ expect(h.name).to eq browser.hidden(index: index).name
33
+ expect(h.id).to eq browser.hidden(index: index).id
34
+ expect(h.value).to eq browser.hidden(index: index).value
35
+
36
+ count += 1
37
+ end
38
+
39
+ expect(count).to be > 0
40
+ end
41
+ end
42
+
43
+ end
@@ -0,0 +1,96 @@
1
+ require "watirspec_helper"
2
+
3
+ describe ["H1", "H2", "H3", "H4", "H5", "H6"] 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 element exists" do
12
+ expect(browser.h1(id: "header1")).to exist
13
+ expect(browser.h2(id: /header2/)).to exist
14
+ expect(browser.h3(text: "Header 3")).to exist
15
+ expect(browser.h4(text: /Header 4/)).to exist
16
+ expect(browser.h5(index: 0)).to exist
17
+ expect(browser.h6(index: 0)).to exist
18
+ expect(browser.h1(xpath: "//h1[@id='first_header']")).to exist
19
+ end
20
+
21
+ it "returns the first h1 if given no args" do
22
+ expect(browser.h1).to exist
23
+ end
24
+
25
+ it "returns true if the element exists" do
26
+ expect(browser.h1(id: "no_such_id")).to_not exist
27
+ expect(browser.h1(id: /no_such_id/)).to_not exist
28
+ expect(browser.h1(text: "no_such_text")).to_not exist
29
+ expect(browser.h1(text: /no_such_text 1/)).to_not exist
30
+ expect(browser.h1(index: 1337)).to_not exist
31
+ expect(browser.h1(xpath: "//p[@id='no_such_id']")).to_not exist
32
+ end
33
+
34
+ it "raises TypeError when 'what' argument is invalid" do
35
+ expect { browser.h1(id: 3.14).exists? }.to raise_error(TypeError)
36
+ end
37
+
38
+ it "raises MissingWayOfFindingObjectException when 'how' argument is invalid" do
39
+ expect { browser.h1(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
40
+ end
41
+ end
42
+
43
+ # Attribute methods
44
+ describe "#class_name" do
45
+ it "returns the class attribute" do
46
+ expect(browser.h1(index: 0).class_name).to eq 'primary'
47
+ end
48
+
49
+ it "returns an empty string if the element exists and the attribute doesn't" do
50
+ expect(browser.h2(index: 0).class_name).to eq ''
51
+ end
52
+
53
+ it "raises UnknownObjectException if the p doesn't exist" do
54
+ expect { browser.h2(id: 'no_such_id').class_name }.to raise_unknown_object_exception
55
+ end
56
+ end
57
+
58
+ describe "#id" do
59
+ it "returns the id attribute" do
60
+ expect(browser.h1(index: 0).id).to eq "first_header"
61
+ end
62
+
63
+ it "returns an empty string if the element exists and the attribute doesn't" do
64
+ expect(browser.h3(index: 0).id).to eq ''
65
+ end
66
+
67
+ it "raises UnknownObjectException if the p doesn't exist" do
68
+ expect { browser.h1(id: "no_such_id").id }.to raise_unknown_object_exception
69
+ expect { browser.h1(index: 1337).id }.to raise_unknown_object_exception
70
+ end
71
+ end
72
+
73
+ describe "#text" do
74
+ it "returns the text of the element" do
75
+ expect(browser.h1(index: 0).text).to eq 'Header 1'
76
+ end
77
+
78
+ it "returns an empty string if the element doesn't contain any text" do
79
+ expect(browser.h6(id: "empty_header").text).to eq ''
80
+ end
81
+
82
+ it "raises UnknownObjectException if the p doesn't exist" do
83
+ expect { browser.h1(id: 'no_such_id').text }.to raise_unknown_object_exception
84
+ expect { browser.h1(:xpath , "//h1[@id='no_such_id']").text }.to raise_unknown_object_exception
85
+ end
86
+ end
87
+
88
+ describe "#respond_to?" do
89
+ it "returns true for all attribute methods" do
90
+ expect(browser.h1(index: 0)).to respond_to(:class_name)
91
+ expect(browser.h1(index: 0)).to respond_to(:id)
92
+ expect(browser.h1(index: 0)).to respond_to(:text)
93
+ end
94
+ end
95
+
96
+ end