watir 1.6.2 → 1.6.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (178) hide show
  1. data/CHANGES +326 -188
  2. data/bin/watir-console +7 -8
  3. data/lib/changes.rb +3 -3
  4. data/lib/license.rb +38 -38
  5. data/lib/readme.rb +140 -140
  6. data/lib/watir/WindowHelper.rb +49 -49
  7. data/lib/watir/camel_case.rb +66 -45
  8. data/lib/watir/clickJSDialog.rb +19 -19
  9. data/lib/watir/close_all.rb +37 -37
  10. data/lib/watir/collections.rb +344 -312
  11. data/lib/watir/container.rb +815 -753
  12. data/lib/watir/contrib/enabled_popup.rb +20 -20
  13. data/lib/watir/contrib/ie-new-process.rb +27 -27
  14. data/lib/watir/contrib/page_checker.rb +29 -29
  15. data/lib/watir/cookiemanager.rb +55 -55
  16. data/lib/watir/core_ext.rb +18 -0
  17. data/lib/watir/datahandler.rb +107 -107
  18. data/lib/watir/dialog.rb +46 -46
  19. data/lib/watir/element.rb +343 -312
  20. data/lib/watir/element_collections.rb +97 -81
  21. data/lib/watir/form.rb +170 -170
  22. data/lib/watir/frame.rb +59 -59
  23. data/lib/watir/ie-class.rb +1009 -1003
  24. data/lib/watir/ie-process.rb +39 -39
  25. data/lib/watir/ie.rb +133 -132
  26. data/lib/watir/image.rb +130 -130
  27. data/lib/watir/input_elements.rb +572 -539
  28. data/lib/watir/irb-history.rb +30 -30
  29. data/lib/watir/link.rb +64 -64
  30. data/lib/watir/locator.rb +176 -161
  31. data/lib/watir/logger.rb +19 -19
  32. data/lib/watir/modal_dialog.rb +122 -122
  33. data/lib/watir/non_control_elements.rb +145 -127
  34. data/lib/watir/page-container.rb +107 -105
  35. data/lib/watir/popup.rb +29 -29
  36. data/lib/watir/process.rb +19 -19
  37. data/lib/watir/screen_capture.rb +115 -115
  38. data/lib/watir/setFileDialog.rb +16 -16
  39. data/lib/watir/table.rb +362 -362
  40. data/lib/watir/utils.rb +19 -19
  41. data/lib/watir/version.rb +5 -5
  42. data/lib/watir/watir_simple.rb +475 -475
  43. data/lib/watir/win32.rb +35 -28
  44. data/lib/watir/win32ole.rb +14 -6
  45. data/lib/watir/winClicker.rb +496 -479
  46. data/unittests/all_tests.rb +10 -10
  47. data/unittests/buttons_xpath_test.rb +69 -69
  48. data/unittests/checkbox_test.rb +179 -176
  49. data/unittests/checkbox_xpath_test.rb +107 -107
  50. data/unittests/core_tests.rb +17 -16
  51. data/unittests/css_test.rb +35 -35
  52. data/unittests/defer_test.rb +46 -46
  53. data/unittests/dialog_test.rb +77 -77
  54. data/unittests/div2_xpath_test.rb +21 -21
  55. data/unittests/div_test.rb +188 -183
  56. data/unittests/div_xpath_test.rb +96 -96
  57. data/unittests/errorchecker_test.rb +22 -22
  58. data/unittests/filefield_test.rb +39 -40
  59. data/unittests/filefield_xpath_test.rb +33 -33
  60. data/unittests/form_test.rb +280 -293
  61. data/unittests/form_xpath_test.rb +252 -253
  62. data/unittests/frame_test.rb +155 -157
  63. data/unittests/google_form_test.rb +15 -15
  64. data/unittests/html/JavascriptClick.html +39 -39
  65. data/unittests/html/blankpage.html +11 -11
  66. data/unittests/html/buttons1.html +40 -40
  67. data/unittests/html/checkboxes1.html +89 -89
  68. data/unittests/html/complex_table.html +36 -36
  69. data/unittests/html/cssTest.html +42 -42
  70. data/unittests/html/depot_store.html +51 -51
  71. data/unittests/html/div.html +93 -93
  72. data/unittests/html/div_xml.html +20 -20
  73. data/unittests/html/fileupload.html +45 -45
  74. data/unittests/html/formTest1.html +38 -38
  75. data/unittests/html/forms2.html +44 -44
  76. data/unittests/html/forms3.html +131 -131
  77. data/unittests/html/forms4.html +27 -27
  78. data/unittests/html/frame_buttons.html +3 -3
  79. data/unittests/html/frame_links.html +3 -3
  80. data/unittests/html/frame_multi.html +4 -4
  81. data/unittests/html/google_india.html +107 -107
  82. data/unittests/html/iframeTest.html +12 -12
  83. data/unittests/html/iframeTest1.html +6 -6
  84. data/unittests/html/iframeTest2.html +5 -5
  85. data/unittests/html/images1.html +66 -66
  86. data/unittests/html/javascriptevents.html +35 -35
  87. data/unittests/html/link_pass.html +10 -10
  88. data/unittests/html/links1.html +38 -38
  89. data/unittests/html/links2.html +10 -10
  90. data/unittests/html/links_multi.html +14 -14
  91. data/unittests/html/list_matters.html +720 -720
  92. data/unittests/html/lists.html +17 -17
  93. data/unittests/html/map_test.html +31 -31
  94. data/unittests/html/modal_dialog.html +10 -10
  95. data/unittests/html/modal_dialog_launcher.html +11 -11
  96. data/unittests/html/nestedFrames.html +6 -6
  97. data/unittests/html/new_browser.html +16 -16
  98. data/unittests/html/pass.html +12 -12
  99. data/unittests/html/popups1.html +59 -59
  100. data/unittests/html/pre.html +27 -27
  101. data/unittests/html/radioButtons1.html +71 -71
  102. data/unittests/html/select_tealeaf.html +54 -54
  103. data/unittests/html/selectboxes1.html +52 -55
  104. data/unittests/html/simple_table.html +26 -26
  105. data/unittests/html/simple_table_buttons.html +104 -104
  106. data/unittests/html/simple_table_columns.html +76 -76
  107. data/unittests/html/table1.html +181 -181
  108. data/unittests/html/tableCell_using_xpath.html +19 -19
  109. data/unittests/html/textarea.html +30 -30
  110. data/unittests/html/textfields1.html +88 -88
  111. data/unittests/html/textsearch.html +44 -44
  112. data/unittests/html/wallofcheckboxes.html +1003 -1003
  113. data/unittests/html/xpath_nbsp.html +12 -12
  114. data/unittests/ie_exists_test.rb +33 -33
  115. data/unittests/ie_mock.rb +94 -94
  116. data/unittests/ie_test.rb +51 -50
  117. data/unittests/images_test.rb +157 -157
  118. data/unittests/images_xpath_test.rb +91 -91
  119. data/unittests/links_multi_test.rb +48 -48
  120. data/unittests/links_test.rb +175 -177
  121. data/unittests/links_xpath_test.rb +39 -39
  122. data/unittests/map_test.rb +98 -98
  123. data/unittests/minmax_test.rb +31 -31
  124. data/unittests/navigate_test.rb +39 -39
  125. data/unittests/nbsp_xpath_test.rb +16 -16
  126. data/unittests/non_core_tests.rb +12 -12
  127. data/unittests/other/WindowLogonExample.rb +27 -27
  128. data/unittests/other/WindowLogonExtra.rb +6 -6
  129. data/unittests/other/all_tests_concurrent.rb +57 -57
  130. data/unittests/{windows → other}/jscriptExtraAlert.rb +6 -6
  131. data/unittests/{windows → other}/jscriptExtraConfirmCancel.rb +6 -6
  132. data/unittests/{windows → other}/jscriptExtraConfirmOk.rb +6 -6
  133. data/unittests/{windows → other}/jscriptPushButton.rb +6 -6
  134. data/unittests/{windows → other}/jscript_test.rb +63 -63
  135. data/unittests/other/navigate_exception_test.rb +24 -24
  136. data/unittests/other/rexml_unit_test.rb +27 -24
  137. data/unittests/other/screen_capture_test.rb +54 -54
  138. data/unittests/other/testcase_method_order_test.rb +35 -35
  139. data/unittests/other/testcase_verify_test.rb +24 -24
  140. data/unittests/other/wait_until_test.rb +99 -99
  141. data/unittests/pagecontainstext_test.rb +69 -69
  142. data/unittests/parent_child_test.rb +43 -43
  143. data/unittests/perf_test.rb +20 -20
  144. data/unittests/popups_test.rb +43 -43
  145. data/unittests/pre_test.rb +53 -53
  146. data/unittests/radios_test.rb +212 -212
  147. data/unittests/radios_xpath_test.rb +101 -101
  148. data/unittests/security_setting_test.rb +23 -23
  149. data/unittests/selectbox_test.rb +148 -139
  150. data/unittests/selectbox_xpath_test.rb +113 -113
  151. data/unittests/setup.rb +77 -75
  152. data/unittests/speed_settings_test.rb +67 -65
  153. data/unittests/table_cell_using_xpath_test.rb +35 -35
  154. data/unittests/table_test.rb +376 -362
  155. data/unittests/table_xpath_test.rb +110 -110
  156. data/unittests/test_tests.rb +9 -9
  157. data/unittests/textarea_test.rb +92 -92
  158. data/unittests/textarea_xpath_test.rb +78 -78
  159. data/unittests/textfield_for_ch_char_test.rb +31 -29
  160. data/unittests/textfields_test.rb +218 -218
  161. data/unittests/textfields_xpath_test.rb +111 -111
  162. data/unittests/window_tests.rb +10 -7
  163. data/unittests/windows/attach_to_existing_window_test.rb +53 -52
  164. data/unittests/windows/attach_to_new_window_test.rb +83 -82
  165. data/unittests/windows/close_window_test.rb +20 -20
  166. data/unittests/windows/frame_links_test.rb +25 -25
  167. data/unittests/windows/ie-each_test.rb +47 -47
  168. data/unittests/windows/iedialog_test.rb +54 -54
  169. data/unittests/windows/js_events_test.rb +55 -55
  170. data/unittests/windows/modal_dialog_test.rb +128 -126
  171. data/unittests/windows/new_test.rb +57 -55
  172. data/unittests/windows/open_close_test.rb +18 -18
  173. data/unittests/windows/send_keys_test.rb +33 -32
  174. data/unittests/xpath_tests.rb +10 -10
  175. metadata +20 -20
  176. data/lib/watir/contrib/visible.rb +0 -47
  177. data/unittests/iostring.rb +0 -30
  178. data/unittests/iostring_test.rb +0 -48
@@ -1,113 +1,113 @@
1
- # feature tests for Select Boxes
2
- # revision: $Revision: 1544 $
3
-
4
- $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
5
- require 'unittests/setup'
6
-
7
- class TC_Selectbox_XPath < Test::Unit::TestCase
8
- include Watir::Exception
9
-
10
- def setup
11
- goto_page "selectboxes1.html"
12
- end
13
-
14
- def test_textBox_Exists
15
- assert(browser.select_list(:xpath, "//select[@name='sel1']/").exists?)
16
- assert_false(browser.select_list(:xpath, "//select[@name='missing']/").exists?)
17
- assert_false(browser.select_list(:xpath, "//select[@id='missing']/").exists?)
18
- end
19
-
20
- def test_select_list_enabled
21
- assert(browser.select_list(:xpath, "//select[@name='sel1']/").enabled?)
22
- assert_raises(UnknownObjectException) { browser.select_list(:xpath, "//select[@name='NoName']/").enabled? }
23
- end
24
-
25
- def test_select_list_getAllContents
26
- assert_raises(UnknownObjectException) { browser.select_list(:xpath, "//select[@name='NoName']/").getAllContents }
27
- assert_equal( ["Option 1" ,"Option 2" , "Option 3" , "Option 4"] ,
28
- browser.select_list(:xpath, "//select[@name='sel1']/").getAllContents)
29
- end
30
-
31
- def test_select_list_getSelectedItems
32
- assert_raises(UnknownObjectException) { browser.select_list(:xpath, "//select[@name='NoName']/").getSelectedItems }
33
- assert_equal( ["Option 3" ] ,
34
- browser.select_list(:xpath, "//select[@name='sel1']/").getSelectedItems)
35
- assert_equal( ["Option 3" , "Option 6" ] ,
36
- browser.select_list(:xpath, "//select[@name='sel2']/").getSelectedItems)
37
- end
38
-
39
- def test_clearSelection
40
- assert_raises(UnknownObjectException) { browser.select_list(:xpath, "//select[@name='NoName']/").clearSelection }
41
- browser.select_list(:xpath, "//select[@name='sel1']/").clearSelection
42
-
43
- # the box sel1 has no ability to have a de-selected item
44
- assert_equal( ["Option 3" ] , browser.select_list(:xpath, "//select[@name='sel1']/").getSelectedItems)
45
-
46
- browser.select_list(:xpath, "//select[@name='sel2']/").clearSelection
47
- assert_equal( [ ] , browser.select_list(:xpath, "//select[@name='sel2']/").getSelectedItems)
48
- end
49
-
50
- def test_select_list_select
51
- assert_raises(UnknownObjectException) { browser.select_list(:xpath, "//select[@name='NoName']/").getSelectedItems }
52
- assert_raises(NoValueFoundException) { browser.select_list(:xpath, "//select[@name='sel1']/").select("missing item") }
53
- assert_raises(NoValueFoundException) { browser.select_list(:xpath, "//select[@name='sel1']/").select(/missing/) }
54
-
55
- # the select method keeps any currently selected items - use the clear selectcion method first
56
- browser.select_list(:xpath, "//select[@name='sel1']/").clearSelection
57
- browser.select_list(:xpath, "//select[@name='sel1']/").select("Option 1")
58
- assert_equal( ["Option 1" ] , browser.select_list(:xpath, "//select[@name='sel1']/").getSelectedItems)
59
-
60
- browser.select_list(:xpath, "//select[@name='sel1']/").clearSelection
61
- browser.select_list(:xpath, "//select[@name='sel1']/").select(/2/)
62
- assert_equal( ["Option 2" ] , browser.select_list(:xpath, "//select[@name='sel1']/").getSelectedItems)
63
-
64
- browser.select_list(:xpath, "//select[@name='sel2']/").clearSelection
65
- browser.select_list(:xpath, "//select[@name='sel2']/").select( /2/ )
66
- browser.select_list(:xpath, "//select[@name='sel2']/").select( /4/ )
67
- assert_equal( ["Option 2" , "Option 4" ] ,
68
- browser.select_list(:xpath, "//select[@name='sel2']/").getSelectedItems)
69
-
70
- # these are to test the onchange event
71
- # the event shouldnt get fired, as this is the selected item
72
- browser.select_list(:xpath, "//select[@name='sel3']/").select( /3/ )
73
- assert_false(browser.text.include?("Pass") )
74
- end
75
-
76
- def test_select_list_select2
77
- # the event should get fired
78
- browser.select_list(:xpath, "//select[@name='sel3']/").select( /2/ )
79
- assert(browser.text.include?("PASS") )
80
- end
81
-
82
- def test_select_list_select_using_value
83
- assert_raises(UnknownObjectException) { browser.select_list(:xpath, "//select[@name='NoName']/").getSelectedItems }
84
- assert_raises(NoValueFoundException) { browser.select_list(:xpath, "//select[@name='sel1']/").select_value("missing item") }
85
- assert_raises(NoValueFoundException) { browser.select_list(:xpath, "//select[@name='sel1']/").select_value(/missing/) }
86
-
87
- # the select method keeps any currently selected items - use the clear selectcion method first
88
- browser.select_list(:xpath, "//select[@name='sel1']/").clearSelection
89
- browser.select_list(:xpath, "//select[@name='sel1']/").select_value("o1")
90
- assert_equal( ["Option 1" ] , browser.select_list(:xpath, "//select[@name='sel1']/").getSelectedItems)
91
-
92
- browser.select_list(:xpath, "//select[@name='sel1']/").clearSelection
93
- browser.select_list(:xpath, "//select[@name='sel1']/").select_value(/2/)
94
- assert_equal( ["Option 2" ] , browser.select_list(:xpath, "//select[@name='sel1']/").getSelectedItems)
95
-
96
- browser.select_list(:xpath, "//select[@name='sel2']/").clearSelection
97
- browser.select_list(:xpath, "//select[@name='sel2']/").select( /2/ )
98
- browser.select_list(:xpath, "//select[@name='sel2']/").select( /4/ )
99
- assert_equal( ["Option 2" , "Option 4" ] , browser.select_list(:xpath, "//select[@name='sel2']/").getSelectedItems)
100
-
101
- # these are to test the onchange event
102
- # the event shouldnt get fired, as this is the selected item
103
- browser.select_list(:xpath, "//select[@name='sel3']/").select_value( /3/ )
104
- assert_false(browser.text.include?("Pass") )
105
- end
106
-
107
- def test_select_list_select_using_value2
108
- # the event should get fired
109
- browser.select_list(:xpath, "//select[@name='sel3']/").select_value( /2/ )
110
- assert(browser.text.include?("PASS") )
111
- end
112
-
113
- end
1
+ # feature tests for Select Boxes
2
+ # revision: $Revision$
3
+
4
+ $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
5
+ require 'unittests/setup'
6
+
7
+ class TC_Selectbox_XPath < Test::Unit::TestCase
8
+ include Watir::Exception
9
+
10
+ def setup
11
+ goto_page "selectboxes1.html"
12
+ end
13
+
14
+ def test_textBox_Exists
15
+ assert(browser.select_list(:xpath, "//select[@name='sel1']/").exists?)
16
+ assert_false(browser.select_list(:xpath, "//select[@name='missing']/").exists?)
17
+ assert_false(browser.select_list(:xpath, "//select[@id='missing']/").exists?)
18
+ end
19
+
20
+ def test_select_list_enabled
21
+ assert(browser.select_list(:xpath, "//select[@name='sel1']/").enabled?)
22
+ assert_raises(UnknownObjectException) { browser.select_list(:xpath, "//select[@name='NoName']/").enabled? }
23
+ end
24
+
25
+ def test_select_list_getAllContents
26
+ assert_raises(UnknownObjectException) { browser.select_list(:xpath, "//select[@name='NoName']/").getAllContents }
27
+ assert_equal( ["Option 1" ,"Option 2" , "Option 3" , "Option 4"] ,
28
+ browser.select_list(:xpath, "//select[@name='sel1']/").getAllContents)
29
+ end
30
+
31
+ def test_select_list_getSelectedItems
32
+ assert_raises(UnknownObjectException) { browser.select_list(:xpath, "//select[@name='NoName']/").getSelectedItems }
33
+ assert_equal( ["Option 3" ] ,
34
+ browser.select_list(:xpath, "//select[@name='sel1']/").getSelectedItems)
35
+ assert_equal( ["Option 3" , "Option 6" ] ,
36
+ browser.select_list(:xpath, "//select[@name='sel2']/").getSelectedItems)
37
+ end
38
+
39
+ def test_clearSelection
40
+ assert_raises(UnknownObjectException) { browser.select_list(:xpath, "//select[@name='NoName']/").clearSelection }
41
+ browser.select_list(:xpath, "//select[@name='sel1']/").clearSelection
42
+
43
+ # the box sel1 has no ability to have a de-selected item
44
+ assert_equal( ["Option 3" ] , browser.select_list(:xpath, "//select[@name='sel1']/").getSelectedItems)
45
+
46
+ browser.select_list(:xpath, "//select[@name='sel2']/").clearSelection
47
+ assert_equal( [ ] , browser.select_list(:xpath, "//select[@name='sel2']/").getSelectedItems)
48
+ end
49
+
50
+ def test_select_list_select
51
+ assert_raises(UnknownObjectException) { browser.select_list(:xpath, "//select[@name='NoName']/").getSelectedItems }
52
+ assert_raises(NoValueFoundException) { browser.select_list(:xpath, "//select[@name='sel1']/").select("missing item") }
53
+ assert_raises(NoValueFoundException) { browser.select_list(:xpath, "//select[@name='sel1']/").select(/missing/) }
54
+
55
+ # the select method keeps any currently selected items - use the clear selectcion method first
56
+ browser.select_list(:xpath, "//select[@name='sel1']/").clearSelection
57
+ browser.select_list(:xpath, "//select[@name='sel1']/").select("Option 1")
58
+ assert_equal( ["Option 1" ] , browser.select_list(:xpath, "//select[@name='sel1']/").getSelectedItems)
59
+
60
+ browser.select_list(:xpath, "//select[@name='sel1']/").clearSelection
61
+ browser.select_list(:xpath, "//select[@name='sel1']/").select(/2/)
62
+ assert_equal( ["Option 2" ] , browser.select_list(:xpath, "//select[@name='sel1']/").getSelectedItems)
63
+
64
+ browser.select_list(:xpath, "//select[@name='sel2']/").clearSelection
65
+ browser.select_list(:xpath, "//select[@name='sel2']/").select( /2/ )
66
+ browser.select_list(:xpath, "//select[@name='sel2']/").select( /4/ )
67
+ assert_equal( ["Option 2" , "Option 4" ] ,
68
+ browser.select_list(:xpath, "//select[@name='sel2']/").getSelectedItems)
69
+
70
+ # these are to test the onchange event
71
+ # the event shouldnt get fired, as this is the selected item
72
+ browser.select_list(:xpath, "//select[@name='sel3']/").select( /3/ )
73
+ assert_false(browser.text.include?("Pass") )
74
+ end
75
+
76
+ def test_select_list_select2
77
+ # the event should get fired
78
+ browser.select_list(:xpath, "//select[@name='sel3']/").select( /2/ )
79
+ assert(browser.text.include?("PASS") )
80
+ end
81
+
82
+ def test_select_list_select_using_value
83
+ assert_raises(UnknownObjectException) { browser.select_list(:xpath, "//select[@name='NoName']/").getSelectedItems }
84
+ assert_raises(NoValueFoundException) { browser.select_list(:xpath, "//select[@name='sel1']/").select_value("missing item") }
85
+ assert_raises(NoValueFoundException) { browser.select_list(:xpath, "//select[@name='sel1']/").select_value(/missing/) }
86
+
87
+ # the select method keeps any currently selected items - use the clear selectcion method first
88
+ browser.select_list(:xpath, "//select[@name='sel1']/").clearSelection
89
+ browser.select_list(:xpath, "//select[@name='sel1']/").select_value("o1")
90
+ assert_equal( ["Option 1" ] , browser.select_list(:xpath, "//select[@name='sel1']/").getSelectedItems)
91
+
92
+ browser.select_list(:xpath, "//select[@name='sel1']/").clearSelection
93
+ browser.select_list(:xpath, "//select[@name='sel1']/").select_value(/2/)
94
+ assert_equal( ["Option 2" ] , browser.select_list(:xpath, "//select[@name='sel1']/").getSelectedItems)
95
+
96
+ browser.select_list(:xpath, "//select[@name='sel2']/").clearSelection
97
+ browser.select_list(:xpath, "//select[@name='sel2']/").select( /2/ )
98
+ browser.select_list(:xpath, "//select[@name='sel2']/").select( /4/ )
99
+ assert_equal( ["Option 2" , "Option 4" ] , browser.select_list(:xpath, "//select[@name='sel2']/").getSelectedItems)
100
+
101
+ # these are to test the onchange event
102
+ # the event shouldnt get fired, as this is the selected item
103
+ browser.select_list(:xpath, "//select[@name='sel3']/").select_value( /3/ )
104
+ assert_false(browser.text.include?("Pass") )
105
+ end
106
+
107
+ def test_select_list_select_using_value2
108
+ # the event should get fired
109
+ browser.select_list(:xpath, "//select[@name='sel3']/").select_value( /2/ )
110
+ assert(browser.text.include?("PASS") )
111
+ end
112
+
113
+ end
@@ -1,75 +1,77 @@
1
- # watir/unittests/setup.rb
2
- $SETUP_LOADED = true
3
-
4
- $myDir = File.expand_path(File.dirname(__FILE__))
5
-
6
- def append_to_load_path path
7
- $LOAD_PATH.unshift File.expand_path(path)
8
- end
9
-
10
- # use local development versions of watir, firewatir, watir-common if available
11
- topdir = File.join(File.dirname(__FILE__), '..')
12
- $firewatir_dev_lib = File.join(topdir, '..', 'firewatir', 'lib')
13
- $watir_dev_lib = File.join(topdir, 'lib')
14
- libs = []
15
- libs << File.join(topdir, '..', 'watir-common', 'lib')
16
- libs << File.join(topdir, '..', 'watir-common') # for the unit tests
17
- libs.each { |lib| append_to_load_path(lib) }
18
-
19
- require 'watir/browser'
20
- Watir::Browser.default = 'ie'
21
- require 'unittests/setup/lib'
22
- require 'watir/testcase'
23
-
24
- # Standard Tags
25
- # :must_be_visible
26
- # :creates_windows
27
- # :unreliable (test fails intermittently)
28
-
29
- =begin
30
- Test Suites
31
- * all_tests -- all the tests in the unittests directory (omits "other")
32
- * window_tests -- window intensive tests
33
- =end
34
-
35
- tiptopdir = File.join topdir, '..'
36
- commondir = File.join topdir, '..', 'watir-common'
37
- append_to_load_path tiptopdir
38
- $all_tests = []
39
- Dir.chdir tiptopdir do
40
- $all_tests += Dir["watir/unittests/*_test.rb"]
41
- end
42
- Dir.chdir tiptopdir do
43
- $all_tests += Dir["watir-common/unittests/*_test.rb"]
44
- end
45
-
46
- # These tests won't load unless Watir is in the path
47
- $watir_only_tests = [
48
- "images_xpath_test.rb",
49
- "images_test.rb",
50
- "dialog_test.rb",
51
- "ie_test.rb"
52
- ].map {|file| "watir/unittests/#{file}"}
53
-
54
- if Watir::UnitTest.options[:browser] != 'ie'
55
- $all_tests -= $watir_only_tests
56
- end
57
-
58
-
59
- # not in all tests!
60
- $window_tests =
61
- [
62
- 'attach_to_existing_window', # could actually run robustly as part of the core suite!
63
- 'attach_to_new_window', # creates new window
64
- 'close_window', # creates new window
65
- 'frame_links', # visible
66
- 'iedialog', # visible
67
- #ie-each
68
- 'js_events', # is always visible
69
- 'jscript',
70
- 'modal_dialog', # modal is visible
71
- #new
72
- 'open_close',
73
- 'send_keys', # visible
74
- ].collect {|x| "unittests/windows/#{x}_test.rb"}
75
-
1
+ # watir/unittests/setup.rb
2
+ $SETUP_LOADED = true
3
+
4
+ $myDir = File.expand_path(File.dirname(__FILE__))
5
+
6
+ def append_to_load_path path
7
+ $LOAD_PATH.unshift File.expand_path(path)
8
+ end
9
+
10
+ # use local development versions of watir, firewatir, commonwatir if available
11
+ topdir = File.join(File.dirname(__FILE__), '..')
12
+ $firewatir_dev_lib = File.join(topdir, '..', 'firewatir', 'lib')
13
+ $watir_dev_lib = File.join(topdir, 'lib')
14
+ libs = []
15
+ libs << File.join(topdir, '..', 'commonwatir', 'lib')
16
+ libs << File.join(topdir, '..', 'commonwatir') # for the unit tests
17
+ libs.each { |lib| append_to_load_path(lib) }
18
+
19
+ require 'watir/browser'
20
+ Watir::Browser.default = 'ie'
21
+ require 'unittests/setup/lib'
22
+ require 'watir/testcase'
23
+
24
+ # Standard Tags
25
+ # :must_be_visible
26
+ # :creates_windows
27
+ # :unreliable (test fails intermittently)
28
+
29
+ =begin
30
+ Test Suites
31
+ * all_tests -- all the tests in the unittests directory (omits "other")
32
+ * window_tests -- window intensive tests
33
+ =end
34
+
35
+ tiptopdir = File.join topdir, '..'
36
+ commondir = File.join topdir, '..', 'commonwatir'
37
+ append_to_load_path tiptopdir
38
+ $all_tests = []
39
+ Dir.chdir tiptopdir do
40
+ $all_tests += Dir["watir/unittests/*_test.rb"]
41
+ end
42
+ Dir.chdir tiptopdir do
43
+ $all_tests += Dir["commonwatir/unittests/*_test.rb"]
44
+ end
45
+
46
+ # These tests won't load unless Watir is in the path
47
+ $watir_only_tests = [
48
+ "images_xpath_test.rb",
49
+ "images_test.rb",
50
+ "dialog_test.rb",
51
+ "ie_test.rb"
52
+ ].map {|file| "watir/unittests/#{file}"}
53
+
54
+ if Watir::UnitTest.options[:browser] != 'ie'
55
+ $all_tests -= $watir_only_tests
56
+ end
57
+
58
+
59
+ =begin
60
+ 'attach_to_existing_window', # could actually run robustly as part of the core suite!
61
+ 'attach_to_new_window', # creates new window
62
+ 'close_window', # creates new window
63
+ 'frame_links', # visible
64
+ 'iedialog', # visible
65
+ #ie-each
66
+ 'js_events', # is always visible
67
+ 'jscript',
68
+ 'modal_dialog', # modal is visible
69
+ #new
70
+ 'open_close',
71
+ 'send_keys', # visible
72
+ =end
73
+ Dir.chdir tiptopdir do
74
+ $window_tests = Dir["watir/unittests/windows/*_test.rb"] - ["watir/unittests/windows/ie-each_test.rb"]
75
+ end
76
+
77
+
@@ -1,66 +1,68 @@
1
- # tests for ability to set defaults for Watir
2
- # revision: $Revision: 1552 $
3
- $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
4
- require 'unittests/setup'
5
-
6
- class TC_instance_options < Test::Unit::TestCase
7
- tags :fails_on_firefox
8
-
9
- def setup
10
- @ie4 = Watir::IE.new
11
- end
12
-
13
- def test_using_default
14
- @ie4.speed = :fast
15
- assert_equal(:fast, @ie4.speed)
16
- @ie4.speed = :slow
17
- assert_equal(:slow, @ie4.speed)
18
- @ie4.speed = :zippy
19
- assert_equal(:zippy, @ie4.speed)
20
-
21
- assert_raise(ArgumentError){@ie4.speed = :fubar}
22
- end
23
-
24
- def teardown
25
- @ie4.close if @ie4.exists?
26
- end
27
- end
28
-
29
- class TC_class_options < Test::Unit::TestCase
30
- tags :fails_on_firefox
31
- include Watir
32
- @@hide_ie = $HIDE_IE
33
- def setup
34
- @previous = IE.options
35
- end
36
- def test_class_defaults
37
- assert_equal({:speed => IE.speed, :visible => IE.visible}, IE.options)
38
- end
39
- def test_change_defaults
40
- IE.set_options(:speed => :fast)
41
- assert_equal(:fast, IE.speed)
42
- IE.set_options(:visible => false)
43
- assert_equal(false, IE.visible)
44
- IE.set_options(:speed => :slow)
45
- assert_equal(:slow, IE.speed)
46
- IE.set_options(:visible => true)
47
- assert_equal(true, IE.visible)
48
- end
49
- def test_defaults_affect_on_instance
50
- IE.set_options(:speed => :fast)
51
- @ie1 = IE.new
52
- assert_equal(:fast, @ie1.speed)
53
- IE.set_options(:speed => :slow)
54
- @ie2 = IE.new
55
- assert_equal(:slow, @ie2.speed)
56
- IE.set_options(:speed => :zippy)
57
- @ie3 = IE.new
58
- assert_equal(:zippy, @ie3.speed)
59
- end
60
- def teardown
61
- IE.set_options @previous
62
- @ie1.close if @ie1
63
- @ie2.close if @ie2
64
- @ie3.close if @ie3
65
- end
1
+ # tests for ability to set defaults for Watir
2
+ # revision: $Revision$
3
+ $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
4
+ require 'unittests/setup'
5
+
6
+ class TC_instance_options < Test::Unit::TestCase
7
+ tags :fails_on_firefox
8
+
9
+ def setup
10
+ @ie4 = Watir::IE.new
11
+ end
12
+
13
+ def test_using_default
14
+ @ie4.speed = :fast
15
+ assert_equal(:fast, @ie4.speed)
16
+ @ie4.speed = :slow
17
+ assert_equal(:slow, @ie4.speed)
18
+ @ie4.speed = :zippy
19
+ assert_equal(:zippy, @ie4.speed)
20
+
21
+ assert_raise(ArgumentError){@ie4.speed = :fubar}
22
+ end
23
+
24
+ def teardown
25
+ @ie4.close if @ie4.exists?
26
+ end
27
+ end
28
+
29
+ class TC_class_options < Test::Unit::TestCase
30
+ tags :fails_on_firefox
31
+ include Watir
32
+ @@hide_ie = $HIDE_IE
33
+ def setup
34
+ @previous = IE.options
35
+ end
36
+ def test_class_defaults
37
+ assert_equal({:speed => IE.speed, :visible => IE.visible, :attach_timeout => IE.attach_timeout}, IE.options)
38
+ end
39
+ def test_change_defaults
40
+ IE.set_options(:speed => :fast)
41
+ assert_equal(:fast, IE.speed)
42
+ IE.set_options(:visible => false)
43
+ assert_equal(false, IE.visible)
44
+ IE.set_options(:speed => :slow)
45
+ assert_equal(:slow, IE.speed)
46
+ IE.set_options(:visible => true)
47
+ assert_equal(true, IE.visible)
48
+ IE.set_options(:attach_timeout => 22.0)
49
+ assert_equal(22.0, IE.attach_timeout)
50
+ end
51
+ def test_defaults_affect_on_instance
52
+ IE.set_options(:speed => :fast)
53
+ @ie1 = IE.new
54
+ assert_equal(:fast, @ie1.speed)
55
+ IE.set_options(:speed => :slow)
56
+ @ie2 = IE.new
57
+ assert_equal(:slow, @ie2.speed)
58
+ IE.set_options(:speed => :zippy)
59
+ @ie3 = IE.new
60
+ assert_equal(:zippy, @ie3.speed)
61
+ end
62
+ def teardown
63
+ IE.set_options @previous
64
+ @ie1.close if @ie1
65
+ @ie2.close if @ie2
66
+ @ie3.close if @ie3
67
+ end
66
68
  end