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,49 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "Element" do
4
+ bug "Actions Endpoint Not Yet Implemented", :firefox do
5
+ context "drag and drop" do
6
+ before { browser.goto WatirSpec.url_for("drag_and_drop.html") }
7
+
8
+ let(:draggable) { browser.div id: "draggable" }
9
+ let(:droppable) { browser.div id: "droppable" }
10
+
11
+ not_compliant_on :safari do
12
+ it "can drag and drop an element onto another" do
13
+ expect(droppable.text).to eq 'Drop here'
14
+ draggable.drag_and_drop_on droppable
15
+ expect(droppable.text).to eq 'Dropped!'
16
+ end
17
+
18
+ bug "http://code.google.com/p/selenium/issues/detail?id=3075", :ff_legacy do
19
+ it "can drag and drop an element onto another when draggable is out of viewport" do
20
+ reposition "draggable"
21
+ perform_drag_and_drop_on_droppable
22
+ end
23
+
24
+ it "can drag and drop an element onto another when droppable is out of viewport" do
25
+ reposition "droppable"
26
+ perform_drag_and_drop_on_droppable
27
+ end
28
+ end
29
+
30
+ it "can drag an element by the given offset" do
31
+ expect(droppable.text).to eq 'Drop here'
32
+ draggable.drag_and_drop_by 200, 50
33
+ expect(droppable.text).to eq 'Dropped!'
34
+ end
35
+
36
+ def reposition(what)
37
+ browser.button(id: "reposition#{what.capitalize}").click
38
+ end
39
+
40
+ def perform_drag_and_drop_on_droppable
41
+ expect(droppable.text).to eq "Drop here"
42
+ draggable.drag_and_drop_on droppable
43
+ expect(droppable.text).to eq 'Dropped!'
44
+ end
45
+ end
46
+
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,65 @@
1
+ require 'watirspec_helper'
2
+
3
+ describe Watir::Locators::Element::Locator do
4
+
5
+ describe "Visible Elements" do
6
+ before do
7
+ browser.goto(WatirSpec.url_for("wait.html"))
8
+ end
9
+
10
+ context "when true" do
11
+ it "finds single element" do
12
+ element = browser.body.element(visible: true)
13
+ expect(element.id).to eq 'foo'
14
+ end
15
+
16
+ it "handles tag_name and index" do
17
+ element = browser.div(visible: true, index: 1)
18
+ expect(element.id).to eq 'buttons'
19
+ end
20
+
21
+ it "handles :tag_name and a single regexp attribute" do
22
+ element = browser.div(visible: true, id: /ons/)
23
+ expect(element.id).to eq 'buttons'
24
+ end
25
+
26
+ it "handles :xpath" do
27
+ element = browser.element(visible: true, xpath: './/div[@id="foo"]')
28
+ expect(element.id).to eq 'foo'
29
+ end
30
+
31
+ it "handles :css" do
32
+ element = browser.element(visible: true, css: 'div#foo')
33
+ expect(element.id).to eq 'foo'
34
+ end
35
+ end
36
+
37
+ context "when false" do
38
+ it "finds single element" do
39
+ element = browser.body.element(visible: false)
40
+ expect(element.id).to eq 'bar'
41
+ end
42
+
43
+ it "handles tag_name and index" do
44
+ element = browser.div(visible: false, index: 1)
45
+ expect(element.id).to eq 'also_hidden'
46
+ end
47
+
48
+ it "handles :tag_name and a single regexp attribute" do
49
+ element = browser.div(visible: false, id: /_/)
50
+ expect(element.id).to eq 'also_hidden'
51
+ end
52
+
53
+ it "handles :xpath" do
54
+ element = browser.element(visible: false, xpath: './/div[@id="bar"]')
55
+ expect(element.id).to eq 'bar'
56
+ end
57
+
58
+ it "handles :css" do
59
+ element = browser.element(visible: false, css: 'div#bar')
60
+ expect(element.id).to eq 'bar'
61
+ end
62
+ end
63
+ end
64
+ end
65
+
@@ -0,0 +1,76 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "Area" do
4
+
5
+ before :each do
6
+ browser.goto(WatirSpec.url_for("images.html"))
7
+ end
8
+
9
+ # Exists method
10
+ describe "#exist?" do
11
+ it "returns true if the area exists" do
12
+ expect(browser.area(id: "NCE")).to exist
13
+ expect(browser.area(id: /NCE/)).to exist
14
+ expect(browser.area(title: "Tables")).to exist
15
+ expect(browser.area(title: /Tables/)).to exist
16
+
17
+ not_compliant_on :internet_explorer do
18
+ expect(browser.area(href: "tables.html")).to exist
19
+ end
20
+
21
+ expect(browser.area(href: /tables/)).to exist
22
+
23
+ expect(browser.area(index: 0)).to exist
24
+ expect(browser.area(xpath: "//area[@id='NCE']")).to exist
25
+ end
26
+
27
+ it "returns the first area if given no args" do
28
+ expect(browser.area).to exist
29
+ end
30
+
31
+ it "returns false if the area doesn't exist" do
32
+ expect(browser.area(id: "no_such_id")).to_not exist
33
+ expect(browser.area(id: /no_such_id/)).to_not exist
34
+ expect(browser.area(title: "no_such_title")).to_not exist
35
+ expect(browser.area(title: /no_such_title/)).to_not exist
36
+
37
+ expect(browser.area(href: "no-tables.html")).to_not exist
38
+ expect(browser.area(href: /no-tables/)).to_not exist
39
+
40
+ expect(browser.area(index: 1337)).to_not exist
41
+ expect(browser.area(xpath: "//area[@id='no_such_id']")).to_not exist
42
+ end
43
+
44
+ it "raises TypeError when 'what' argument is invalid" do
45
+ expect { browser.area(id: 3.14).exists? }.to raise_error(TypeError)
46
+ end
47
+
48
+ it "raises MissingWayOfFindingObjectException when 'how' argument is invalid" do
49
+ expect { browser.area(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
50
+ end
51
+ end
52
+
53
+ # Attribute methods
54
+ describe "#id" do
55
+ it "returns the id attribute" do
56
+ expect(browser.area(index: 0).id).to eq "NCE"
57
+ end
58
+
59
+ it "returns an empty string if the element exists and the attribute doesn't" do
60
+ expect(browser.area(index: 2).id).to eq ''
61
+ end
62
+
63
+ it "raises UnknownObjectException if the area doesn't exist" do
64
+ expect { browser.area(id: "no_such_id").id }.to raise_unknown_object_exception
65
+ expect { browser.area(index: 1337).id }.to raise_unknown_object_exception
66
+ end
67
+
68
+ end
69
+
70
+ describe "#respond_to?" do
71
+ it "returns true for all attribute methods" do
72
+ expect(browser.area(index: 0)).to respond_to(:id)
73
+ end
74
+ end
75
+
76
+ end
@@ -0,0 +1,42 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "Areas" do
4
+
5
+ before :each do
6
+ browser.goto(WatirSpec.url_for("images.html"))
7
+ end
8
+
9
+ describe "with selectors" do
10
+ it "returns the matching elements" do
11
+ expect(browser.areas(alt: "Tables").to_a).to eq [browser.area(alt: "Tables")]
12
+ end
13
+ end
14
+
15
+ describe "#length" do
16
+ it "returns the number of areas" do
17
+ expect(browser.areas.length).to eq 3
18
+ end
19
+ end
20
+
21
+ describe "#[]" do
22
+ it "returns the area at the given index" do
23
+ expect(browser.areas[0].id).to eq("NCE")
24
+ end
25
+ end
26
+
27
+ describe "#each" do
28
+ it "iterates through areas correctly" do
29
+ count = 0
30
+
31
+ browser.areas.each_with_index do |a, index|
32
+ expect(a.id).to eq browser.area(index: index).id
33
+ expect(a.title).to eq browser.area(index: index).title
34
+
35
+ count += 1
36
+ end
37
+
38
+ expect(count).to be > 0
39
+ end
40
+ end
41
+
42
+ end
@@ -0,0 +1,270 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "Button" 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 button exists (tag = :input)" do
12
+ expect(browser.button(id: "new_user_submit")).to exist
13
+ expect(browser.button(id: /new_user_submit/)).to exist
14
+ expect(browser.button(name: "new_user_reset")).to exist
15
+ expect(browser.button(name: /new_user_reset/)).to exist
16
+ expect(browser.button(value: "Button")).to exist
17
+ expect(browser.button(value: /Button/)).to exist
18
+ not_compliant_on :internet_explorer do
19
+ expect(browser.button(src: "images/button.png")).to exist
20
+ end
21
+ expect(browser.button(src: /button\.png/)).to exist
22
+ expect(browser.button(text: "Button 2")).to exist
23
+ expect(browser.button(text: /Button 2/)).to exist
24
+ expect(browser.button(class: "image")).to exist
25
+ expect(browser.button(class: /image/)).to exist
26
+ expect(browser.button(index: 0)).to exist
27
+ expect(browser.button(xpath: "//input[@id='new_user_submit']")).to exist
28
+ expect(browser.button(alt: "Create a new user")).to exist
29
+ expect(browser.button(alt: /Create a/)).to exist
30
+ end
31
+
32
+ it "returns true if the button exists (tag = :button)" do
33
+ expect(browser.button(name: "new_user_button_2")).to exist
34
+ expect(browser.button(name: /new_user_button_2/)).to exist
35
+ expect(browser.button(value: "button_2")).to exist
36
+ expect(browser.button(value: /button_2/)).to exist
37
+ expect(browser.button(text: 'Button 2')).to exist
38
+ expect(browser.button(text: /Button 2/)).to exist
39
+ expect(browser.button(value: 'Button 2')).to exist
40
+ expect(browser.button(value: /Button 2/)).to exist
41
+ end
42
+
43
+ it "returns true if the button exists (how = :caption)" do
44
+ expect(browser.button(caption: "Button 2")).to exist
45
+ expect(browser.button(caption: /Button 2/)).to exist
46
+ end
47
+
48
+ it "returns the first button if given no args" do
49
+ expect(browser.button).to exist
50
+ end
51
+
52
+ it "returns true for element with upper case type" do
53
+ expect(browser.button(id: "new_user_button_preview")).to exist
54
+ end
55
+
56
+ it "returns false if the button doesn't exist" do
57
+ expect(browser.button(id: "no_such_id")).to_not exist
58
+ expect(browser.button(id: /no_such_id/)).to_not exist
59
+ expect(browser.button(name: "no_such_name")).to_not exist
60
+ expect(browser.button(name: /no_such_name/)).to_not exist
61
+ expect(browser.button(value: "no_such_value")).to_not exist
62
+ expect(browser.button(value: /no_such_value/)).to_not exist
63
+ expect(browser.button(src: "no_such_src")).to_not exist
64
+ expect(browser.button(src: /no_such_src/)).to_not exist
65
+ expect(browser.button(text: "no_such_text")).to_not exist
66
+ expect(browser.button(text: /no_such_text/)).to_not exist
67
+ expect(browser.button(class: "no_such_class")).to_not exist
68
+ expect(browser.button(class: /no_such_class/)).to_not exist
69
+ expect(browser.button(index: 1337)).to_not exist
70
+ expect(browser.button(xpath: "//input[@id='no_such_id']")).to_not exist
71
+ end
72
+
73
+ it "checks the tag name and type attribute when locating by xpath" do
74
+ expect(browser.button(xpath: "//input[@type='text']")).to_not exist
75
+ expect(browser.button(xpath: "//input[@type='button']")).to exist
76
+ end
77
+
78
+
79
+ it "raises TypeError when 'what' argument is invalid" do
80
+ expect { browser.button(id: 3.14).exists? }.to raise_error(TypeError)
81
+ end
82
+
83
+ it "raises MissingWayOfFindingObjectException when 'how' argument is invalid" do
84
+ expect { browser.button(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
85
+ end
86
+ end
87
+
88
+ # Attribute methods
89
+ describe "#class_name" do
90
+ it "returns the class name of the button" do
91
+ expect(browser.button(name: "new_user_image").class_name).to eq "image"
92
+ end
93
+
94
+ it "returns an empty string if the button has no class name" do
95
+ expect(browser.button(name: "new_user_submit").class_name).to eq ""
96
+ end
97
+ end
98
+
99
+ describe "#id" do
100
+ it "returns the id if the button exists" do
101
+ expect(browser.button(index: 0).id).to eq 'new_user_submit'
102
+ expect(browser.button(index: 1).id).to eq 'new_user_reset'
103
+ expect(browser.button(index: 2).id).to eq 'new_user_button'
104
+ end
105
+
106
+ it "raises UnknownObjectException if button does not exist" do
107
+ expect { browser.button(index: 1337).id }.to raise_unknown_object_exception
108
+ end
109
+ end
110
+
111
+ describe "#name" do
112
+ it "returns the name if button exists" do
113
+ expect(browser.button(index: 0).name).to eq 'new_user_submit'
114
+ expect(browser.button(index: 1).name).to eq 'new_user_reset'
115
+ expect(browser.button(index: 2).name).to eq 'new_user_button'
116
+ end
117
+
118
+ it "raises UnknownObjectException if the button does not exist" do
119
+ expect { browser.button(name: "no_such_name").name }.to raise_unknown_object_exception
120
+ end
121
+ end
122
+
123
+ describe "#src" do
124
+ it "returns the src attribute for the button image" do
125
+ # varies between browsers
126
+ expect(browser.button(name: "new_user_image").src).to include("images/button.png")
127
+ end
128
+
129
+ it "raises UnknownObjectException if the button does not exist" do
130
+ expect { browser.button(name: "no_such_name").src }.to raise_unknown_object_exception
131
+ end
132
+ end
133
+
134
+ describe "#style" do
135
+ not_compliant_on :internet_explorer, :safari do
136
+ it "returns the style attribute if the button exists" do
137
+ expect(browser.button(id: 'delete_user_submit').style).to eq "border: 4px solid red;"
138
+ end
139
+ end
140
+
141
+ deviates_on :safari do
142
+ it "returns the style attribute if the button exists" do
143
+ expect(browser.button(id: 'delete_user_submit').style).to eq "border: 4px solid red;"
144
+ end
145
+ end
146
+
147
+ it "returns an empty string if the element exists and the attribute doesn't exist" do
148
+ expect(browser.button(id: 'new_user_submit').style).to eq ""
149
+ end
150
+
151
+ it "raises UnknownObjectException if the button does not exist" do
152
+ expect { browser.button(name: "no_such_name").style }.to raise_unknown_object_exception
153
+ end
154
+ end
155
+
156
+ describe "#title" do
157
+ it "returns the title of the button" do
158
+ expect(browser.button(index: 0).title).to eq 'Submit the form'
159
+ end
160
+
161
+ it "returns an empty string for button without title" do
162
+ expect(browser.button(index: 1).title).to eq ''
163
+ end
164
+ end
165
+
166
+ describe "#type" do
167
+ it "returns the type if button exists" do
168
+ expect(browser.button(index: 0).type).to eq 'submit'
169
+ expect(browser.button(index: 1).type).to eq 'reset'
170
+ expect(browser.button(index: 2).type).to eq 'button'
171
+ end
172
+
173
+ it "raises UnknownObjectException if button does not exist" do
174
+ expect { browser.button(name: "no_such_name").type }.to raise_unknown_object_exception
175
+ end
176
+ end
177
+
178
+ describe "#value" do
179
+ it "returns the value if button exists" do
180
+ expect(browser.button(index: 0).value).to eq 'Submit'
181
+ expect(browser.button(index: 1).value).to eq 'Reset'
182
+ expect(browser.button(index: 2).value).to eq 'Button'
183
+ end
184
+
185
+ it "raises UnknownObjectException if button does not exist" do
186
+ expect { browser.button(name: "no_such_name").value }.to raise_unknown_object_exception
187
+ end
188
+ end
189
+
190
+ describe "#text" do
191
+ it "returns the text of the button" do
192
+ expect(browser.button(index: 0).text).to eq 'Submit'
193
+ expect(browser.button(index: 1).text).to eq 'Reset'
194
+ expect(browser.button(index: 2).text).to eq 'Button'
195
+ expect(browser.button(index: 3).text).to eq 'Preview'
196
+ end
197
+
198
+ it "raises UnknownObjectException if the element does not exist" do
199
+ expect { browser.button(id: "no_such_id").text }.to raise_unknown_object_exception
200
+ end
201
+ end
202
+
203
+ describe "#respond_to?" do
204
+ it "returns true for all attribute methods" do
205
+ expect(browser.button(index: 0)).to respond_to(:class_name)
206
+ expect(browser.button(index: 0)).to respond_to(:id)
207
+ expect(browser.button(index: 0)).to respond_to(:name)
208
+ expect(browser.button(index: 0)).to respond_to(:src)
209
+ expect(browser.button(index: 0)).to respond_to(:style)
210
+ expect(browser.button(index: 0)).to respond_to(:title)
211
+ expect(browser.button(index: 0)).to respond_to(:type)
212
+ expect(browser.button(index: 0)).to respond_to(:value)
213
+ end
214
+ end
215
+
216
+ # Access methods
217
+ describe "#enabled?" do
218
+ it "returns true if the button is enabled" do
219
+ expect(browser.button(name: 'new_user_submit')).to be_enabled
220
+ end
221
+
222
+ it "returns false if the button is disabled" do
223
+ expect(browser.button(name: 'new_user_submit_disabled')).to_not be_enabled
224
+ end
225
+
226
+ it "raises UnknownObjectException if the button doesn't exist" do
227
+ expect { browser.button(name: "no_such_name").enabled? }.to raise_unknown_object_exception
228
+ end
229
+ end
230
+
231
+ describe "#disabled?" do
232
+ it "returns false when button is enabled" do
233
+ expect(browser.button(name: 'new_user_submit')).to_not be_disabled
234
+ end
235
+
236
+ it "returns true when button is disabled" do
237
+ expect(browser.button(name: 'new_user_submit_disabled')).to be_disabled
238
+ end
239
+
240
+ it "raises UnknownObjectException if button does not exist" do
241
+ expect { browser.button(name: "no_such_name").disabled? }.to raise_unknown_object_exception
242
+ end
243
+ end
244
+
245
+ # Manipulation methods
246
+ describe "#click" do
247
+ it "clicks the button if it exists" do
248
+ browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
249
+ browser.button(id: 'delete_user_submit').click
250
+ Watir::Wait.until { !browser.url.include? 'forms_with_input_elements.html'}
251
+ expect(browser.text).to include("Semantic table")
252
+ end
253
+
254
+ it "fires events" do
255
+ browser.button(id: 'new_user_button').click
256
+ expect(browser.button(id: 'new_user_button').value).to eq 'new_value_set_by_onclick_event'
257
+ end
258
+
259
+ it "raises UnknownObjectException when clicking a button that doesn't exist" do
260
+ expect { browser.button(value: "no_such_value").click }.to raise_unknown_object_exception
261
+ expect { browser.button(id: "no_such_id").click }.to raise_unknown_object_exception
262
+ end
263
+
264
+ it "raises ObjectDisabledException when clicking a disabled button" do
265
+ expect { browser.button(value: "Disabled").click }.to raise_object_disabled_exception
266
+ end
267
+ end
268
+
269
+
270
+ end