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 "TextFields" 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.text_fields(name: "new_user_email").to_a).to eq [browser.text_field(name: "new_user_email")]
12
+ end
13
+ end
14
+
15
+ describe "#length" do
16
+ it "returns the number of text fields" do
17
+ expect(browser.text_fields.length).to eq 19
18
+ end
19
+ end
20
+
21
+ describe "#[]" do
22
+ it "returns the text field at the given index" do
23
+ expect(browser.text_fields[0].id).to eq "new_user_first_name"
24
+ expect(browser.text_fields[1].id).to eq "new_user_last_name"
25
+ expect(browser.text_fields[2].id).to eq "new_user_email"
26
+ end
27
+ end
28
+
29
+ describe "#each" do
30
+ it "iterates through text fields correctly" do
31
+ count = 0
32
+
33
+ browser.text_fields.each_with_index do |r, index|
34
+ expect(r.name).to eq browser.text_field(index: index).name
35
+ expect(r.id).to eq browser.text_field(index: index).id
36
+ expect(r.value).to eq browser.text_field(index: index).value
37
+
38
+ count += 1
39
+ end
40
+
41
+ expect(count).to be > 0
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,26 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "TextArea" do
4
+ before :each do
5
+ browser.goto WatirSpec.url_for('forms_with_input_elements.html')
6
+ end
7
+
8
+ let(:textarea) { browser.textarea }
9
+
10
+ it 'can set a value' do
11
+ textarea.set 'foo'
12
+ expect(textarea.value).to eq 'foo'
13
+ end
14
+
15
+ it 'can clear a value' do
16
+ textarea.set 'foo'
17
+ textarea.clear
18
+ expect(textarea.value).to eq ''
19
+ end
20
+
21
+ it 'locates textarea by value' do
22
+ browser.textarea.set 'foo'
23
+ expect(browser.textarea(value: /foo/)).to exist
24
+ expect(browser.textarea(value: 'foo')).to exist
25
+ end
26
+ end
@@ -0,0 +1,24 @@
1
+ require "watirspec_helper"
2
+
3
+ describe 'TextArea' do
4
+ before :each do
5
+ browser.goto WatirSpec.url_for('forms_with_input_elements.html')
6
+ end
7
+
8
+ context 'when locating by :value' do
9
+ before(:each) do
10
+ browser.textarea(index: 0).set 'foo1'
11
+ browser.textarea(index: 1).set 'foo2'
12
+ end
13
+
14
+ it 'finds textareas by string' do
15
+ expect(browser.textareas(value: 'foo1').map(&:id)).to eq [browser.textarea(index: 0).id]
16
+ expect(browser.textareas(value: 'foo2').map(&:id)).to eq [browser.textarea(index: 1).id]
17
+ end
18
+
19
+ it 'finds textareas by regexp' do
20
+ expect(browser.textareas(value: /foo/)[0].id).to eq browser.textarea(index: 0).id
21
+ expect(browser.textareas(value: /foo/)[1].id).to eq browser.textarea(index: 1).id
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,91 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "TableFooter" do
4
+ before :each do
5
+ browser.goto(WatirSpec.url_for("tables.html"))
6
+ end
7
+
8
+ describe "#exists?" do
9
+ it "returns true if the table tfoot exists (page context)" do
10
+ expect(browser.tfoot(id: 'tax_totals')).to exist
11
+ expect(browser.tfoot(id: /tax_totals/)).to exist
12
+ expect(browser.tfoot(index: 0)).to exist
13
+ expect(browser.tfoot(xpath: "//tfoot[@id='tax_totals']")).to exist
14
+ end
15
+
16
+ it "returns true if the table tfoot exists (table context)" do
17
+ expect(browser.table(index: 0).tfoot(id: 'tax_totals')).to exist
18
+ expect(browser.table(index: 0).tfoot(id: /tax_totals/)).to exist
19
+ expect(browser.table(index: 0).tfoot(index: 0)).to exist
20
+ expect(browser.table(index: 0).tfoot(xpath: "//tfoot[@id='tax_totals']")).to exist
21
+ end
22
+
23
+ it "returns the first tfoot if given no args" do
24
+ expect(browser.tfoot).to exist
25
+ end
26
+
27
+ it "returns false if the table tfoot doesn't exist (page context)" do
28
+ expect(browser.tfoot(id: 'no_such_id')).to_not exist
29
+ expect(browser.tfoot(id: /no_such_id/)).to_not exist
30
+ expect(browser.tfoot(index: 1337)).to_not exist
31
+ expect(browser.tfoot(xpath: "//tfoot[@id='no_such_id']")).to_not exist
32
+ end
33
+
34
+ it "returns false if the table tfoot doesn't exist (table context)" do
35
+ expect(browser.table(index: 0).tfoot(id: 'no_such_id')).to_not exist
36
+ expect(browser.table(index: 0).tfoot(id: /no_such_id/)).to_not exist
37
+ expect(browser.table(index: 0).tfoot(index: 1337)).to_not exist
38
+ expect(browser.table(index: 0).tfoot(xpath: "//tfoot[@id='no_such_id']")).to_not exist
39
+ end
40
+
41
+ it "raises TypeError when 'what' argument is invalid" do
42
+ expect { browser.tfoot(id: 3.14).exists? }.to raise_error(TypeError)
43
+ expect { browser.table(index: 0).tfoot(id: 3.14).exists? }.to raise_error(TypeError)
44
+ end
45
+
46
+ it "raises MissingWayOfFindingObjectException when 'how' argument is invalid" do
47
+ expect { browser.tfoot(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
48
+ expect { browser.table(index: 0).tfoot(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
49
+ end
50
+ end
51
+
52
+ describe "#[]" do
53
+ it "returns the row at the given index (page context)" do
54
+ expect(browser.tfoot(id: 'tax_totals')[0].id).to eq 'tfoot_row_1'
55
+ expect(browser.tfoot(id: 'tax_totals')[0][1].text).to eq '24 349'
56
+ expect(browser.tfoot(id: 'tax_totals')[0][2].text).to eq '5 577'
57
+ end
58
+
59
+ it "returns the row at the given index (table context)" do
60
+ expect(browser.table(index: 0).tfoot(id: 'tax_totals')[0].id).to eq "tfoot_row_1"
61
+ expect(browser.table(index: 0).tfoot(id: 'tax_totals')[0][1].text).to eq '24 349'
62
+ expect(browser.table(index: 0).tfoot(id: 'tax_totals')[0][2].text).to eq '5 577'
63
+ end
64
+ end
65
+
66
+ describe "#row" do
67
+ it "finds the first row matching the selector" do
68
+ row = browser.tfoot(id: 'tax_totals').row(id: "tfoot_row_1")
69
+
70
+ expect(row.id).to eq "tfoot_row_1"
71
+ end
72
+ end
73
+
74
+ describe "#rows" do
75
+ it "finds rows matching the selector" do
76
+ rows = browser.tfoot(id: 'tax_totals').rows(id: "tfoot_row_1")
77
+
78
+ expect(rows.size).to eq 1
79
+ expect(rows.first.id).to eq "tfoot_row_1"
80
+ end
81
+ end
82
+
83
+ describe "#strings" do
84
+ it "returns the text of child cells" do
85
+ expect(browser.tfoot(id: 'tax_totals').strings).to eq [
86
+ ["Sum", "24 349", "5 577", "18 722"]
87
+ ]
88
+ end
89
+ end
90
+
91
+ end
@@ -0,0 +1,68 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "TableFooters" do
4
+ before :each do
5
+ browser.goto(WatirSpec.url_for("tables.html"))
6
+ end
7
+
8
+ describe "with selectors" do
9
+ it "returns the matching elements" do
10
+ expect(browser.tfoots(id: "tax_totals").to_a).to eq [browser.tfoot(id: "tax_totals")]
11
+ end
12
+ end
13
+
14
+ describe "#length" do
15
+ it "returns the correct number of table tfoots (page context)" do
16
+ expect(browser.tfoots.length).to eq 1
17
+ end
18
+
19
+ it "returns the correct number of table tfoots (table context)" do
20
+ expect(browser.table(index: 0).tfoots.length).to eq 1
21
+ end
22
+ end
23
+
24
+ describe "#[]" do
25
+ it "returns the row at the given index (page context)" do
26
+ expect(browser.tfoots[0].id).to eq "tax_totals"
27
+ end
28
+
29
+ it "returns the row at the given index (table context)" do
30
+ expect(browser.table(index: 0).tfoots[0].id).to eq "tax_totals"
31
+ end
32
+ end
33
+
34
+ describe "#each" do
35
+ it "iterates through table tfoots correctly (page context)" do
36
+ browser.tfoots.each_with_index do |tfoot, index|
37
+ expect(tfoot.id).to eq browser.tfoot(index: index).id
38
+ end
39
+ end
40
+
41
+ describe "#each" do
42
+ it "iterates through table tfoots correctly (page context)" do
43
+ count = 0
44
+
45
+ browser.tfoots.each_with_index do |tfoot, index|
46
+ expect(tfoot.id).to eq browser.tfoot(index: index).id
47
+
48
+ count += 1
49
+ end
50
+
51
+ expect(count).to be > 0
52
+ end
53
+
54
+ it "iterates through table tfoots correctly (table context)" do
55
+ table = browser.table(index: 0)
56
+ count = 0
57
+
58
+ table.tfoots.each_with_index do |tfoot, index|
59
+ expect(tfoot.id).to eq table.tfoot(index: index).id
60
+
61
+ count += 1
62
+ end
63
+
64
+ expect(count).to be > 0
65
+ end
66
+ end
67
+ end
68
+ end
@@ -0,0 +1,91 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "TableHeader" do
4
+
5
+ before :each do
6
+ browser.goto(WatirSpec.url_for("tables.html"))
7
+ end
8
+
9
+ describe "#exists?" do
10
+ it "returns true if the table theader exists (page context)" do
11
+ expect(browser.thead(id: 'tax_headers')).to exist
12
+ expect(browser.thead(id: /tax_headers/)).to exist
13
+ expect(browser.thead(index: 0)).to exist
14
+ expect(browser.thead(xpath: "//thead[@id='tax_headers']")).to exist
15
+ end
16
+
17
+ it "returns the first thead if given no args" do
18
+ expect(browser.thead).to exist
19
+ end
20
+
21
+ it "returns true if the table theader exists (table context)" do
22
+ expect(browser.table(index: 0).thead(id: 'tax_headers')).to exist
23
+ expect(browser.table(index: 0).thead(id: /tax_headers/)).to exist
24
+ expect(browser.table(index: 0).thead(index: 0)).to exist
25
+ expect(browser.table(index: 0).thead(xpath: "//thead[@id='tax_headers']")).to exist
26
+ end
27
+
28
+ it "returns false if the table theader doesn't exist (page context)" do
29
+ expect(browser.thead(id: 'no_such_id')).to_not exist
30
+ expect(browser.thead(id: /no_such_id/)).to_not exist
31
+ expect(browser.thead(index: 1337)).to_not exist
32
+ expect(browser.thead(xpath: "//thead[@id='no_such_id']")).to_not exist
33
+ end
34
+
35
+ it "returns false if the table theader doesn't exist (table context)" do
36
+ expect(browser.table(index: 0).thead(id: 'no_such_id')).to_not exist
37
+ expect(browser.table(index: 0).thead(id: /no_such_id/)).to_not exist
38
+ expect(browser.table(index: 0).thead(index: 1337)).to_not exist
39
+ expect(browser.table(index: 0).thead(xpath: "//thead[@id='no_such_id']")).to_not exist
40
+ end
41
+
42
+ it "raises TypeError when 'what' argument is invalid" do
43
+ expect { browser.thead(id: 3.14).exists? }.to raise_error(TypeError)
44
+ expect { browser.table(index: 0).thead(id: 3.14).exists? }.to raise_error(TypeError)
45
+ end
46
+
47
+ it "raises MissingWayOfFindingObjectException when 'how' argument is invalid" do
48
+ expect { browser.thead(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
49
+ expect { browser.table(index: 0).thead(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
50
+ end
51
+ end
52
+
53
+ describe "#[]" do
54
+ it "returns the row at the given index (page context)" do
55
+ expect(browser.thead(id: 'tax_headers')[0].id).to eq 'thead_row_1'
56
+ expect(browser.thead(id: 'tax_headers')[0][1].text).to eq 'Before income tax'
57
+ expect(browser.thead(id: 'tax_headers')[0][2].text).to eq 'Income tax'
58
+ end
59
+
60
+ it "returns the row at the given index (table context)" do
61
+ expect(browser.table(index: 0).thead(id: 'tax_headers')[0].id).to eq 'thead_row_1'
62
+ expect(browser.table(index: 0).thead(id: 'tax_headers')[0][1].text).to eq 'Before income tax'
63
+ expect(browser.table(index: 0).thead(id: 'tax_headers')[0][2].text).to eq 'Income tax'
64
+ end
65
+ end
66
+
67
+ describe "#row" do
68
+ it "finds the first row matching the selector" do
69
+ row = browser.thead(id: 'tax_headers').row(class: "dark")
70
+ expect(row.id).to eq "thead_row_1"
71
+ end
72
+ end
73
+
74
+ describe "#rows" do
75
+ it "finds rows matching the selector" do
76
+ rows = browser.thead(id: 'tax_headers').rows(class: "dark")
77
+
78
+ expect(rows.size).to eq 1
79
+ expect(rows.first.id).to eq "thead_row_1"
80
+ end
81
+ end
82
+
83
+ describe "#strings" do
84
+ it "returns the text of child cells" do
85
+ expect(browser.thead(id: 'tax_headers').strings).to eq [
86
+ ["", "Before income tax", "Income tax", "After income tax"]
87
+ ]
88
+ end
89
+ end
90
+
91
+ end
@@ -0,0 +1,68 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "TableHeaders" do
4
+ before :each do
5
+ browser.goto(WatirSpec.url_for("tables.html"))
6
+ end
7
+
8
+ describe "with selectors" do
9
+ it "returns the matching elements" do
10
+ expect(browser.theads(id: "tax_headers").to_a).to eq [browser.thead(id: "tax_headers")]
11
+ end
12
+ end
13
+
14
+ describe "#length" do
15
+ it "returns the correct number of table theads (page context)" do
16
+ expect(browser.theads.length).to eq 1
17
+ end
18
+
19
+ it "returns the correct number of table theads (table context)" do
20
+ expect(browser.table(index: 0).theads.length).to eq 1
21
+ end
22
+ end
23
+
24
+ describe "#[]" do
25
+ it "returns the row at the given index (page context)" do
26
+ expect(browser.theads[0].id).to eq "tax_headers"
27
+ end
28
+
29
+ it "returns the row at the given index (table context)" do
30
+ expect(browser.table(index: 0).theads[0].id).to eq "tax_headers"
31
+ end
32
+ end
33
+
34
+ describe "#each" do
35
+ it "iterates through table theads correctly (page context)" do
36
+ browser.theads.each_with_index do |thead, index|
37
+ expect(thead.id).to eq browser.thead(index: index).id
38
+ end
39
+ end
40
+
41
+ describe "#each" do
42
+ it "iterates through table theads correctly (page context)" do
43
+ count = 0
44
+
45
+ browser.theads.each_with_index do |thead, index|
46
+ expect(thead.id).to eq browser.thead(index: index).id
47
+
48
+ count += 1
49
+ end
50
+
51
+ expect(count).to be > 0
52
+ end
53
+
54
+ it "iterates through table theads correctly (table context)" do
55
+ table = browser.table(index: 0)
56
+ count = 0
57
+
58
+ table.theads.each_with_index do |thead, index|
59
+ expect(thead.id).to eq table.thead(index: index).id
60
+
61
+ count += 1
62
+ end
63
+
64
+ expect(count).to be > 0
65
+ end
66
+ end
67
+ end
68
+ end
@@ -0,0 +1,80 @@
1
+ require "watirspec_helper"
2
+
3
+ describe "TableRow" do
4
+
5
+ before :each do
6
+ browser.goto(WatirSpec.url_for("tables.html"))
7
+ end
8
+
9
+ describe "#exists?" do
10
+ it "returns true if the table row exists" do
11
+ expect(browser.tr(id: "outer_first")).to exist
12
+ expect(browser.tr(id: /outer_first/)).to exist
13
+ expect(browser.tr(index: 0)).to exist
14
+ browser.tr(xpath: "//tr[@id='outer_first']")
15
+ end
16
+
17
+ it "returns the first row if given no args" do
18
+ expect(browser.tr).to exist
19
+ end
20
+
21
+ it "returns false if the table row doesn't exist" do
22
+ expect(browser.tr(id: "no_such_id")).to_not exist
23
+ expect(browser.tr(id: /no_such_id/)).to_not exist
24
+ expect(browser.tr(index: 1337)).to_not exist
25
+ browser.tr(xpath: "//tr[@id='no_such_id']")
26
+ end
27
+
28
+ it "raises TypeError when 'what' argument is invalid" do
29
+ expect { browser.tr(id: 3.14).exists? }.to raise_error(TypeError)
30
+ end
31
+
32
+ it "raises MissingWayOfFindingObjectException when 'how' argument is invalid" do
33
+ expect { browser.tr(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
34
+ end
35
+ end
36
+
37
+ describe "#click" do
38
+ bug "http://github.com/watir/watir/issues/issue/32", :internet_explorer, :chrome do
39
+ it "fires the row's onclick event" do
40
+ browser.tr(id: 'inner_first').click
41
+ expect(messages).to include('tr')
42
+ end
43
+ end
44
+ end
45
+
46
+ describe "#[]" do
47
+ let(:table) { browser.table(id: 'outer') }
48
+
49
+ it "returns the nth cell of the row" do
50
+ expect(table[0][0].text).to eq "Table 1, Row 1, Cell 1"
51
+ expect(table[2][0].text).to eq "Table 1, Row 3, Cell 1"
52
+ end
53
+ end
54
+
55
+ describe "#cells" do
56
+ let(:table) { browser.table(id: 'outer') }
57
+
58
+ it "returns the correct number of cells" do
59
+ expect(table[0].cells.length).to eq 2
60
+ expect(table[1].cells.length).to eq 2
61
+ expect(table[2].cells.length).to eq 2
62
+ end
63
+
64
+ it "finds cells in the table" do
65
+ expect(table[0].cells(text: /Table 1/).size).to eq 2
66
+ end
67
+
68
+ it "does not find cells from nested tables" do
69
+ expect(table[1].cell(id: "t2_r1_c1")).to_not exist
70
+ expect(table[1].cell(id: /t2_r1_c1/)).to_not exist
71
+ end
72
+
73
+ it "iterates correctly through the cells of the row" do
74
+ browser.table(id: 'outer').row(index: 1).cells.each_with_index do |cell, idx|
75
+ expect(cell.id).to eq "t1_r2_c#{idx + 1}"
76
+ end
77
+ end
78
+ end
79
+
80
+ end