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,15 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "Elements" do
4
+ before :each do
5
+ browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
6
+ end
7
+
8
+ describe "#[]" do
9
+ context "when elements do not exist" do
10
+ it "returns not existing element" do
11
+ expect(browser.elements(id: "non-existing")[0]).not_to exist
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,100 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "Em" do
4
+
5
+ before :each do
6
+ browser.goto(WatirSpec.url_for("non_control_elements.html"))
7
+ end
8
+
9
+ # Exists method
10
+ describe "#exists?" do
11
+ it "returns true if the element exists" do
12
+ expect(browser.em(id: "important-id")).to exist
13
+ expect(browser.em(class: "important-class")).to exist
14
+ expect(browser.em(xpath: "//em[@id='important-id']")).to exist
15
+ expect(browser.em(index: 0)).to exist
16
+ end
17
+
18
+ it "returns the first em if given no args" do
19
+ expect(browser.em).to exist
20
+ end
21
+
22
+ it "returns false if the element does not exist" do
23
+ expect(browser.em(id: "no_such_id")).to_not exist
24
+ end
25
+
26
+ it "raises TypeError when 'what' argument is invalid" do
27
+ expect { browser.em(id: 3.14).exists? }.to raise_error(TypeError)
28
+ end
29
+
30
+ it "raises MissingWayOfFindingObjectException when 'how' argument is invalid" do
31
+ expect { browser.em(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
32
+ end
33
+ end
34
+
35
+ # Attribute methods
36
+ describe "#class_name" do
37
+ it "returns the class attribute if the element exists" do
38
+ expect(browser.em(id: "important-id").class_name).to eq "important-class"
39
+ end
40
+
41
+ it "raises UnknownObjectException if the element does not exist" do
42
+ expect { browser.em(id: "no_such_id").class_name }.to raise_unknown_object_exception
43
+ expect { browser.em(title: "no_such_title").class_name }.to raise_unknown_object_exception
44
+ expect { browser.em(index: 1337).class_name }.to raise_unknown_object_exception
45
+ expect { browser.em(xpath: "//em[@id='no_such_id']").class_name }.to raise_unknown_object_exception
46
+ end
47
+ end
48
+
49
+ describe "#id" do
50
+ it "returns the id attribute if the element exists" do
51
+ expect(browser.em(class: 'important-class').id).to eq "important-id"
52
+ end
53
+
54
+ it "raises UnknownObjectException if the element does not exist" do
55
+ expect {browser.em(id: "no_such_id").id }.to raise_unknown_object_exception
56
+ expect {browser.em(title: "no_such_id").id }.to raise_unknown_object_exception
57
+ expect {browser.em(index: 1337).id }.to raise_unknown_object_exception
58
+ end
59
+ end
60
+
61
+ describe "#title" do
62
+ it "returns the title of the element" do
63
+ expect(browser.em(class: "important-class").title).to eq "ergo cogito"
64
+ end
65
+ end
66
+
67
+ describe "#text" do
68
+ it "returns the text of the element" do
69
+ expect(browser.em(id: "important-id").text).to eq "ergo cogito"
70
+ end
71
+
72
+ it "raises UnknownObjectException if the element does not exist" do
73
+ expect { browser.em(id: "no_such_id").text }.to raise_unknown_object_exception
74
+ expect { browser.em(title: "no_such_title").text }.to raise_unknown_object_exception
75
+ expect { browser.em(index: 1337).text }.to raise_unknown_object_exception
76
+ expect { browser.em(xpath: "//em[@id='no_such_id']").text }.to raise_unknown_object_exception
77
+ end
78
+ end
79
+
80
+ describe "#respond_to?" do
81
+ it "returns true for all attribute methods" do
82
+ expect(browser.em(index: 0)).to respond_to(:id)
83
+ expect(browser.em(index: 0)).to respond_to(:class_name)
84
+ expect(browser.em(index: 0)).to respond_to(:style)
85
+ expect(browser.em(index: 0)).to respond_to(:text)
86
+ expect(browser.em(index: 0)).to respond_to(:title)
87
+ end
88
+ end
89
+
90
+ # Manipulation methods
91
+ describe "#click" do
92
+ it "raises UnknownObjectException if the element does not exist" do
93
+ expect { browser.em(id: "no_such_id").click }.to raise_unknown_object_exception
94
+ expect { browser.em(title: "no_such_title").click }.to raise_unknown_object_exception
95
+ expect { browser.em(index: 1337).click }.to raise_unknown_object_exception
96
+ expect { browser.em(xpath: "//em[@id='no_such_id']").click }.to raise_unknown_object_exception
97
+ end
98
+ end
99
+
100
+ end
@@ -0,0 +1,43 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "Ems" 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.ems(class: "important-class").to_a).to eq [browser.em(class: "important-class")]
12
+ end
13
+ end
14
+
15
+ describe "#length" do
16
+ it "returns the number of ems" do
17
+ expect(browser.ems.length).to eq 1
18
+ end
19
+ end
20
+
21
+ describe "#[]" do
22
+ it "returns the em at the given index" do
23
+ expect(browser.ems[0].id).to eq "important-id"
24
+ end
25
+ end
26
+
27
+ describe "#each" do
28
+ it "iterates through ems correctly" do
29
+ count = 0
30
+
31
+ browser.ems.each_with_index do |e, index|
32
+ expect(e.text).to eq browser.em(index: index).text
33
+ expect(e.id).to eq browser.em(index: index).id
34
+ expect(e.class_name).to eq browser.em(index: index).class_name
35
+
36
+ count += 1
37
+ end
38
+
39
+ expect(count).to be > 0
40
+ end
41
+ end
42
+
43
+ end
@@ -0,0 +1,181 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "FileField" do
4
+
5
+ before :each do
6
+ browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
7
+ end
8
+
9
+ describe "#exist?" do
10
+ it "returns true if the file field exists" do
11
+ expect(browser.file_field(id: 'new_user_portrait')).to exist
12
+ expect(browser.file_field(id: /new_user_portrait/)).to exist
13
+ expect(browser.file_field(name: 'new_user_portrait')).to exist
14
+ expect(browser.file_field(name: /new_user_portrait/)).to exist
15
+ expect(browser.file_field(class: 'portrait')).to exist
16
+ expect(browser.file_field(class: /portrait/)).to exist
17
+ expect(browser.file_field(index: 0)).to exist
18
+ expect(browser.file_field(xpath: "//input[@id='new_user_portrait']")).to exist
19
+ end
20
+
21
+ it "returns the first file field if given no args" do
22
+ expect(browser.file_field).to exist
23
+ end
24
+
25
+ it "returns true for element with upper case type" do
26
+ expect(browser.file_field(id: "new_user_resume")).to exist
27
+ end
28
+
29
+ it "returns false if the file field doesn't exist" do
30
+ expect(browser.file_field(id: 'no_such_id')).to_not exist
31
+ expect(browser.file_field(id: /no_such_id/)).to_not exist
32
+ expect(browser.file_field(name: 'no_such_name')).to_not exist
33
+ expect(browser.file_field(name: /no_such_name/)).to_not exist
34
+ expect(browser.file_field(class: 'no_such_class')).to_not exist
35
+ expect(browser.file_field(class: /no_such_class/)).to_not exist
36
+ expect(browser.file_field(index: 1337)).to_not exist
37
+ expect(browser.file_field(xpath: "//input[@id='no_such_id']")).to_not exist
38
+ end
39
+
40
+ it "raises TypeError when 'what' argument is invalid" do
41
+ expect { browser.file_field(id: 3.14).exists? }.to raise_error(TypeError)
42
+ end
43
+
44
+ it "raises MissingWayOfFindingObjectException when 'how' argument is invalid" do
45
+ expect { browser.file_field(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
46
+ end
47
+ end
48
+
49
+ # Attribute methods
50
+
51
+ describe "#class_name" do
52
+ it "returns the class attribute if the text field exists" do
53
+ expect(browser.file_field(index: 0).class_name).to eq "portrait"
54
+ end
55
+
56
+ it "raises UnknownObjectException if the text field doesn't exist" do
57
+ expect { browser.file_field(index: 1337).class_name }.to raise_unknown_object_exception
58
+ end
59
+ end
60
+
61
+ describe "#id" do
62
+ it "returns the id attribute if the text field exists" do
63
+ expect(browser.file_field(index: 0).id).to eq "new_user_portrait"
64
+ end
65
+
66
+ it "raises UnknownObjectException if the text field doesn't exist" do
67
+ expect { browser.file_field(index: 1337).id }.to raise_unknown_object_exception
68
+ end
69
+ end
70
+
71
+ describe "#name" do
72
+ it "returns the name attribute if the text field exists" do
73
+ expect(browser.file_field(index: 0).name).to eq "new_user_portrait"
74
+ end
75
+
76
+ it "raises UnknownObjectException if the text field doesn't exist" do
77
+ expect { browser.file_field(index: 1337).name }.to raise_unknown_object_exception
78
+ end
79
+ end
80
+
81
+ describe "#title" do
82
+ it "returns the title attribute if the text field exists" do
83
+ expect(browser.file_field(id: "new_user_portrait").title).to eq "Smile!"
84
+ end
85
+ end
86
+
87
+ describe "#type" do
88
+ it "returns the type attribute if the text field exists" do
89
+ expect(browser.file_field(index: 0).type).to eq "file"
90
+ end
91
+
92
+ it "raises UnknownObjectException if the text field doesn't exist" do
93
+ expect { browser.file_field(index: 1337).type }.to raise_unknown_object_exception
94
+ end
95
+ end
96
+
97
+ describe "#respond_to?" do
98
+ it "returns true for all attribute methods" do
99
+ expect(browser.file_field(index: 0)).to respond_to(:class_name)
100
+ expect(browser.file_field(index: 0)).to respond_to(:id)
101
+ expect(browser.file_field(index: 0)).to respond_to(:name)
102
+ expect(browser.file_field(index: 0)).to respond_to(:title)
103
+ expect(browser.file_field(index: 0)).to respond_to(:type)
104
+ expect(browser.file_field(index: 0)).to respond_to(:value)
105
+ end
106
+ end
107
+
108
+ # Manipulation methods
109
+
110
+ describe "#set" do
111
+ not_compliant_on :safari do
112
+ bug "https://bugzilla.mozilla.org/show_bug.cgi?id=1260233", :firefox do
113
+ bug "https://github.com/detro/ghostdriver/issues/183", :phantomjs do
114
+ it "is able to set a file path in the field and click the upload button and fire the onchange event" do
115
+ browser.goto WatirSpec.url_for("forms_with_input_elements.html")
116
+
117
+ path = File.expand_path(__FILE__)
118
+ element = browser.file_field(name: "new_user_portrait")
119
+
120
+ element.set path
121
+
122
+ expect(element.value).to include(File.basename(path)) # only some browser will return the full path
123
+ expect(messages.first).to include(File.basename(path))
124
+
125
+ browser.button(name: "new_user_submit").click
126
+ end
127
+ end
128
+
129
+ it "raises an error if the file does not exist" do
130
+ expect {
131
+ browser.file_field.set(File.join(Dir.tmpdir, 'unlikely-to-exist'))
132
+ }.to raise_error(Errno::ENOENT)
133
+ end
134
+ end
135
+ end
136
+ end
137
+
138
+
139
+ bug "https://github.com/detro/ghostdriver/issues/183", :phantomjs do
140
+ not_compliant_on :safari do
141
+ describe "#value=" do
142
+ bug "https://bugzilla.mozilla.org/show_bug.cgi?id=1260233", :firefox do
143
+ it "is able to set a file path in the field and click the upload button and fire the onchange event" do
144
+ browser.goto WatirSpec.url_for("forms_with_input_elements.html")
145
+
146
+ path = File.expand_path(__FILE__)
147
+ element = browser.file_field(name: "new_user_portrait")
148
+
149
+ element.value = path
150
+ expect(element.value).to include(File.basename(path)) # only some browser will return the full path
151
+ end
152
+
153
+ not_compliant_on :internet_explorer do
154
+ bug "Raises File not found error - File Bug Report", :firefox do
155
+ it "does not raise an error if the file does not exist" do
156
+ path = File.join(Dir.tmpdir, 'unlikely-to-exist')
157
+ browser.file_field.value = path
158
+
159
+ expected = path
160
+ expected.gsub!("/", "\\") if Selenium::WebDriver::Platform.windows?
161
+
162
+ expect(browser.file_field.value).to include(File.basename(expected)) # only some browser will return the full path
163
+ end
164
+ end
165
+
166
+ not_compliant_on %i(chrome windows) do
167
+ bug "Raises File not found error - File Bug Report", :firefox do
168
+ it "does not alter its argument" do
169
+ value = '/foo/bar'
170
+ browser.file_field.value = value
171
+ expect(value).to eq '/foo/bar'
172
+ end
173
+ end
174
+ end
175
+ end
176
+ end
177
+ end
178
+ end
179
+ end
180
+
181
+ end
@@ -0,0 +1,43 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "FileFields" 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.file_fields(class: "portrait").to_a).to eq [browser.file_field(class: "portrait")]
12
+ end
13
+ end
14
+
15
+ describe "#length" do
16
+ it "returns the correct number of file fields" do
17
+ expect(browser.file_fields.length).to eq 3
18
+ end
19
+ end
20
+
21
+ describe "#[]" do
22
+ it "returns the file field at the given index" do
23
+ expect(browser.file_fields[0].id).to eq "new_user_portrait"
24
+ end
25
+ end
26
+
27
+ describe "#each" do
28
+ it "iterates through file fields correctly" do
29
+ count = 0
30
+
31
+ browser.file_fields.each_with_index do |f, index|
32
+ expect(f.name).to eq browser.file_field(index: index).name
33
+ expect(f.id).to eq browser.file_field(index: index).id
34
+ expect(f.value).to eq browser.file_field(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,29 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "Font" do
4
+
5
+ before :each do
6
+ browser.goto(WatirSpec.url_for("font.html"))
7
+ end
8
+
9
+ it "finds the font element" do
10
+ expect(browser.font(index: 0)).to exist
11
+ end
12
+
13
+ it "knows about the color attribute" do
14
+ expect(browser.font(index: 0).color).to eq "#ff00ff"
15
+ end
16
+
17
+ it "knows about the face attribute" do
18
+ expect(browser.font(index: 0).face).to eq "Helvetica"
19
+ end
20
+
21
+ it "knows about the size attribute" do
22
+ expect(browser.font(index: 0).size).to eq "12"
23
+ end
24
+
25
+ it "finds all font elements" do
26
+ expect(browser.fonts.size).to eq 1
27
+ end
28
+
29
+ end
@@ -0,0 +1,70 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "Form" 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 form exists" do
11
+ expect(browser.form(id: 'new_user')).to exist
12
+ expect(browser.form(id: /new_user/)).to exist
13
+
14
+ expect(browser.form(class: 'user')).to exist
15
+ expect(browser.form(class: /user/)).to exist
16
+
17
+ expect(browser.form(method: 'post')).to exist
18
+ expect(browser.form(method: /post/)).to exist
19
+ expect(browser.form(action: /to_me/)).to exist
20
+ expect(browser.form(index: 0)).to exist
21
+ expect(browser.form(xpath: "//form[@id='new_user']")).to exist
22
+ end
23
+
24
+ it "returns the first form if given no args" do
25
+ expect(browser.form).to exist
26
+ end
27
+
28
+ it "returns false if the form doesn't exist" do
29
+ expect(browser.form(id: 'no_such_id')).to_not exist
30
+ expect(browser.form(id: /no_such_id/)).to_not exist
31
+
32
+ expect(browser.form(class: 'no_such_class')).to_not exist
33
+ expect(browser.form(class: /no_such_class/)).to_not exist
34
+
35
+ expect(browser.form(method: 'no_such_method')).to_not exist
36
+ expect(browser.form(method: /no_such_method/)).to_not exist
37
+ expect(browser.form(action: 'no_such_action')).to_not exist
38
+ expect(browser.form(action: /no_such_action/)).to_not exist
39
+ expect(browser.form(index: 1337)).to_not exist
40
+ expect(browser.form(xpath: "//form[@id='no_such_id']")).to_not exist
41
+ end
42
+
43
+ it "raises TypeError when 'what' argument is invalid" do
44
+ expect { browser.form(id: 3.14).exists? }.to raise_error(TypeError)
45
+ end
46
+
47
+ it "raises MissingWayOfFindingObjectException when 'how' argument is invalid" do
48
+ expect { browser.form(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
49
+ end
50
+ end
51
+
52
+ bug "https://bugzilla.mozilla.org/show_bug.cgi?id=1290985", :firefox do
53
+ describe "#submit" do
54
+ it "submits the form" do
55
+ browser.form(id: "delete_user").submit
56
+ Watir::Wait.until { !browser.url.include? 'forms_with_input_elements.html' }
57
+ expect(browser.text).to include("Semantic table")
58
+ end
59
+
60
+ it "triggers onsubmit event and takes its result into account" do
61
+ form = browser.form(name: "user_new")
62
+ form.submit
63
+ expect(form).to exist
64
+ expect(messages.size).to eq 1
65
+ expect(messages[0]).to eq "submit"
66
+ end
67
+ end
68
+ end
69
+
70
+ end