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,91 +1,91 @@
1
- # feature tests for Images
2
- # revision: $Revision: 1505 $
3
-
4
- $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
5
- require 'unittests/setup'
6
- require 'ftools'
7
- require 'webrick'
8
- require 'watir/cookiemanager'
9
-
10
- class TC_Images_XPath < Test::Unit::TestCase
11
- include Watir
12
-
13
- def setup
14
- gotoImagePage
15
- end
16
-
17
- def gotoImagePage
18
- goto_page "images1.html"
19
- end
20
-
21
- def test_imageExists
22
- assert_false( browser.image(:xpath , "//img[@name='missing_name']/").exists? )
23
- assert( browser.image(:xpath , "//img[@name='circle']/").exists? )
24
- # assert( browser.image(:name , /circ/ ).exists? )
25
-
26
- assert_false( browser.image(:xpath , "//img[@id='missing_id']/").exists? )
27
- assert( browser.image(:xpath , "//img[@id='square']/").exists? )
28
- # assert( browser.image(:id , /squ/ ).exists? )
29
-
30
- assert_false( browser.image(:xpath , "//img[@src='missingsrc.gif']/").exists? )
31
-
32
- # BP -- This fails for me but not for Paul. It doesn't make sense to me that it should pass.
33
- # assert( browser.image(:src , "file:///#{$myDir}/html/images/triangle.jpg").exists? )
34
- # assert( browser.image(:src , /triangle/ ).exists? )
35
-
36
- assert( browser.image(:alt , "circle" ).exists? )
37
- # assert( browser.image(:alt , /cir/ ).exists? )
38
-
39
- assert_false( browser.image(:alt , "triangle" ).exists? )
40
- # assert_false( browser.image(:alt , /tri/ ).exists? )
41
- end
42
-
43
- def test_image_click
44
- assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@name='no_image_with_this']/").click }
45
- assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@id='no_image_with_this']/").click }
46
- assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@src='no_image_with_this']/").click}
47
- assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@alt='no_image_with_this']/").click}
48
-
49
- # test for bug 1882
50
- browser.text_field(:name , "text1").clear
51
- browser.button(:value , /Pos/ ).click
52
- assert_equal('clicked' , browser.text_field(:name , "text1" ).value )
53
-
54
- # test for disabled button
55
- # assert_false( browser.image(:name , 'disabler_test').disabled )
56
- # browser.button(:name , 'disable_img').click
57
-
58
- # assert( browser.image(:name , 'disabler_test').disabled )
59
- # browser.button(:name , 'disable_img').click
60
-
61
- # browser.image(:src, /button/).click
62
- # assert(browser.text.include?("PASS") )
63
-
64
- end
65
-
66
-
67
-
68
- def test_imageHasLoaded
69
- assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@name='no_image_with_this']/").hasLoaded? }
70
- assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@id='no_image_with_this']/").hasLoaded? }
71
- assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@src='no_image_with_this']/").hasLoaded? }
72
- assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@alt='no_image_with_this']/").hasLoaded? }
73
-
74
- assert_false( browser.image(:xpath , "//img[@name='themissingimage']/").hasLoaded? )
75
- assert( browser.image(:xpath , "//img[@name='circle']/").hasLoaded? )
76
-
77
- assert( browser.image(:xpath , "//img[@alt='circle']/").hasLoaded? )
78
- # assert( browser.image(:alt, /cir/ ).hasLoaded? )
79
- end
80
-
81
- def test_image_properties
82
- assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@name='no_image_with_this']/").hasLoaded? }
83
- assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@id='no_image_with_this']/").hasLoaded? }
84
- assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@src='no_image_with_this']/").hasLoaded? }
85
-
86
- # to string tests -- output should be verified!
87
- puts browser.image(:xpath , "//img[@name='circle']/").to_s
88
- end
89
-
90
- end
91
-
1
+ # feature tests for Images
2
+ # revision: $Revision$
3
+
4
+ $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
5
+ require 'unittests/setup'
6
+ require 'ftools'
7
+ require 'webrick'
8
+ require 'watir/cookiemanager'
9
+
10
+ class TC_Images_XPath < Test::Unit::TestCase
11
+ include Watir
12
+
13
+ def setup
14
+ gotoImagePage
15
+ end
16
+
17
+ def gotoImagePage
18
+ goto_page "images1.html"
19
+ end
20
+
21
+ def test_imageExists
22
+ assert_false( browser.image(:xpath , "//img[@name='missing_name']/").exists? )
23
+ assert( browser.image(:xpath , "//img[@name='circle']/").exists? )
24
+ # assert( browser.image(:name , /circ/ ).exists? )
25
+
26
+ assert_false( browser.image(:xpath , "//img[@id='missing_id']/").exists? )
27
+ assert( browser.image(:xpath , "//img[@id='square']/").exists? )
28
+ # assert( browser.image(:id , /squ/ ).exists? )
29
+
30
+ assert_false( browser.image(:xpath , "//img[@src='missingsrc.gif']/").exists? )
31
+
32
+ # BP -- This fails for me but not for Paul. It doesn't make sense to me that it should pass.
33
+ # assert( browser.image(:src , "file:///#{$myDir}/html/images/triangle.jpg").exists? )
34
+ # assert( browser.image(:src , /triangle/ ).exists? )
35
+
36
+ assert( browser.image(:alt , "circle" ).exists? )
37
+ # assert( browser.image(:alt , /cir/ ).exists? )
38
+
39
+ assert_false( browser.image(:alt , "triangle" ).exists? )
40
+ # assert_false( browser.image(:alt , /tri/ ).exists? )
41
+ end
42
+
43
+ def test_image_click
44
+ assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@name='no_image_with_this']/").click }
45
+ assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@id='no_image_with_this']/").click }
46
+ assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@src='no_image_with_this']/").click}
47
+ assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@alt='no_image_with_this']/").click}
48
+
49
+ # test for bug 1882
50
+ browser.text_field(:name , "text1").clear
51
+ browser.button(:value , /Pos/ ).click
52
+ assert_equal('clicked' , browser.text_field(:name , "text1" ).value )
53
+
54
+ # test for disabled button
55
+ # assert_false( browser.image(:name , 'disabler_test').disabled )
56
+ # browser.button(:name , 'disable_img').click
57
+
58
+ # assert( browser.image(:name , 'disabler_test').disabled )
59
+ # browser.button(:name , 'disable_img').click
60
+
61
+ # browser.image(:src, /button/).click
62
+ # assert(browser.text.include?("PASS") )
63
+
64
+ end
65
+
66
+
67
+
68
+ def test_imageHasLoaded
69
+ assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@name='no_image_with_this']/").hasLoaded? }
70
+ assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@id='no_image_with_this']/").hasLoaded? }
71
+ assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@src='no_image_with_this']/").hasLoaded? }
72
+ assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@alt='no_image_with_this']/").hasLoaded? }
73
+
74
+ assert_false( browser.image(:xpath , "//img[@name='themissingimage']/").hasLoaded? )
75
+ assert( browser.image(:xpath , "//img[@name='circle']/").hasLoaded? )
76
+
77
+ assert( browser.image(:xpath , "//img[@alt='circle']/").hasLoaded? )
78
+ # assert( browser.image(:alt, /cir/ ).hasLoaded? )
79
+ end
80
+
81
+ def test_image_properties
82
+ assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@name='no_image_with_this']/").hasLoaded? }
83
+ assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@id='no_image_with_this']/").hasLoaded? }
84
+ assert_raises(UnknownObjectException ) { browser.image(:xpath , "//img[@src='no_image_with_this']/").hasLoaded? }
85
+
86
+ # to string tests -- output should be verified!
87
+ puts browser.image(:xpath , "//img[@name='circle']/").to_s
88
+ end
89
+
90
+ end
91
+
@@ -1,49 +1,49 @@
1
- # feature tests for Links with multiple attributes
2
- # revision: $Revision: 1009 $
3
-
4
- $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
5
- require 'unittests/setup'
6
-
7
- class TC_Links_Multi < Test::Unit::TestCase
8
-
9
- def setup
10
- goto_page 'links_multi.html'
11
- end
12
-
13
- def test_existing
14
- assert_match(/not.html/, browser.link(:class, 'Papa').href)
15
- assert_match(/mama.html/, browser.link(:text, 'click').href)
16
- end
17
-
18
- def test_class_alias
19
- assert_match(/not.html/, browser.link(:class_name, 'Papa').href)
20
- end
21
-
22
- def test_hash_syntax
23
- assert_match(/not.html/, browser.link(:class => 'Papa').href)
24
- assert_match(/mama.html/, browser.link(:text => 'click').href)
25
- end
26
-
27
- def test_class_and_text
28
- assert_match(/papa.html/, browser.link(:class => 'Papa', :text => 'click').href)
29
- end
30
-
31
- def test_class_and_index
32
- assert_match(/papa.html/, browser.link(:class => 'Papa', :index => 2).href)
33
- end
34
-
35
- def test_not_found_single
36
- exception = assert_raise(UnknownObjectException) do
37
- browser.link(:id, 'Missing').href
38
- end
39
- assert_equal('Unable to locate element, using :id, "Missing"', exception.message)
40
- end
41
-
42
- def test_not_found_with_multi
43
- exception = assert_raise(UnknownObjectException) do
44
- browser.link(:class => 'Missing', :index => 2).href
45
- end
46
- assert_equal('Unable to locate element, using {:class=>"Missing", :index=>2}', exception.message)
47
- end
48
-
1
+ # feature tests for Links with multiple attributes
2
+ # revision: $Revision: 1009 $
3
+
4
+ $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
5
+ require 'unittests/setup'
6
+
7
+ class TC_Links_Multi < Test::Unit::TestCase
8
+
9
+ def setup
10
+ goto_page 'links_multi.html'
11
+ end
12
+
13
+ def test_existing
14
+ assert_match(/not.html/, browser.link(:class, 'Papa').href)
15
+ assert_match(/mama.html/, browser.link(:text, 'click').href)
16
+ end
17
+
18
+ def test_class_alias
19
+ assert_match(/not.html/, browser.link(:class_name, 'Papa').href)
20
+ end
21
+
22
+ def test_hash_syntax
23
+ assert_match(/not.html/, browser.link(:class => 'Papa').href)
24
+ assert_match(/mama.html/, browser.link(:text => 'click').href)
25
+ end
26
+
27
+ def test_class_and_text
28
+ assert_match(/papa.html/, browser.link(:class => 'Papa', :text => 'click').href)
29
+ end
30
+
31
+ def test_class_and_index
32
+ assert_match(/papa.html/, browser.link(:class => 'Papa', :index => 2).href)
33
+ end
34
+
35
+ def test_not_found_single
36
+ exception = assert_raise(UnknownObjectException) do
37
+ browser.link(:id, 'Missing').href
38
+ end
39
+ assert_equal('Unable to locate element, using :id, "Missing"', exception.message)
40
+ end
41
+
42
+ def test_not_found_with_multi
43
+ exception = assert_raise(UnknownObjectException) do
44
+ browser.link(:class => 'Missing', :index => 2).href
45
+ end
46
+ assert_equal('Unable to locate element, using {:class=>"Missing", :index=>2}', exception.message)
47
+ end
48
+
49
49
  end
@@ -1,177 +1,175 @@
1
- # feature tests for Links
2
- # revision: $Revision: 1536 $
3
-
4
- $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
5
- require 'unittests/setup'
6
- require 'cgi'
7
-
8
- class TC_Links < Test::Unit::TestCase
9
- include Watir::Exception
10
-
11
- def setup
12
- goto_page "links1.html"
13
- end
14
-
15
- tag_method :test_bad_attribute, :fails_on_firefox
16
- def test_bad_attribute
17
- assert_raises(MissingWayOfFindingObjectException) { browser.link(:bad_attribute, 199).click }
18
- begin
19
- browser.link(:bad_attribute, 199).click
20
- rescue MissingWayOfFindingObjectException => e
21
- assert_equal "bad_attribute is an unknown way of finding a <A> element (199)", e.to_s
22
- end
23
- end
24
-
25
- def xtest_missing_links_dont_exist
26
- assert_false(exists?{browser.link(:text, "missing")})
27
- assert_false(exists?{browser.link(:text, /miss/)})
28
- end
29
-
30
- def test_link_Exists
31
- assert(browser.link(:text, "test1").exists?)
32
- assert(browser.link(:text, /TEST/i).exists?)
33
- assert_false(browser.link(:text, "missing").exists?)
34
- assert_false(browser.link(:text, /miss/).exists?)
35
-
36
- # this assert we have to build up the path
37
- # this is what it looks like if you do a to_s on the link file:///C:/watir_bonus/unitTests/html/links1.HTML
38
- # but what we get back from $htmlRoot is a mixed case, so its almost impossible for use to test this correctly
39
- # assert(browser.link(:url,'file:///C:/watir_bonus/unitTests/html/links1.HTML' ).exists?)
40
-
41
- assert(browser.link(:url, /link_pass.html/).exists?)
42
- assert_false(browser.link(:url, "alsomissing.html").exists?)
43
-
44
- assert(browser.link(:id, "link_id").exists?)
45
- assert_false(browser.link(:id, "alsomissing").exists?)
46
-
47
- assert(browser.link(:id, /_id/).exists?)
48
- assert_false(browser.link(:id, /alsomissing/).exists?)
49
-
50
- assert(browser.link(:name, "link_name").exists?)
51
- assert_false(browser.link(:name, "alsomissing").exists?)
52
-
53
- assert(browser.link(:name, /_n/).exists?)
54
- assert_false(browser.link(:name, /missing/).exists?)
55
-
56
- assert(browser.link(:title, /ti/).exists?)
57
- assert(browser.link(:title, "link_title").exists?)
58
-
59
- assert_false(browser.link(:title, /missing/).exists?)
60
-
61
- assert(browser.link(:url, /_pass/).exists?)
62
- assert_false(browser.link(:url, /dont_exist/).exists?)
63
- end
64
-
65
- def test_link_click
66
- browser.link(:text, "test1").click
67
- assert( browser.text.include?("Links2-Pass") )
68
- end
69
- def test_link2_click
70
- browser.link(:url, /link_pass.html/).click
71
- assert( browser.text.include?("Links3-Pass") )
72
- end
73
- def test_link3_click
74
- browser.link(:index, 1).click
75
- assert( browser.text.include?("Links2-Pass") )
76
- end
77
- def test_link4_click
78
- assert_raises(UnknownObjectException, "UnknownObjectException was supposed to be thrown" ) { browser.link(:index, 199).click }
79
- end
80
-
81
- def test_link_properties
82
- assert_raises(UnknownObjectException) { browser.link(:index, 199).href }
83
- assert_raises(UnknownObjectException) { browser.link(:index, 199).value}
84
- assert_raises(UnknownObjectException) { browser.link(:index, 199).innerText }
85
- assert_raises(UnknownObjectException) { browser.link(:index, 199).name }
86
- assert_raises(UnknownObjectException) { browser.link(:index, 199).id }
87
- assert_raises(UnknownObjectException) { browser.link(:index, 199).disabled }
88
- assert_raises(UnknownObjectException) { browser.link(:index, 199).type }
89
- assert_raises(UnknownObjectException) { browser.link(:index, 199).class_name }
90
-
91
- assert_match(/links2/ ,browser.link(:index, 1).href )
92
- assert_equal("" , browser.link(:index, 1).value)
93
- assert_equal("test1" , browser.link(:index, 1).innerText )
94
- assert_equal("" , browser.link(:index, 1).name )
95
- assert_equal("" , browser.link(:index, 1).id )
96
- assert_equal(false , browser.link(:index, 1).disabled )
97
- assert_equal("" , browser.link(:index, 1).class_name)
98
- assert_equal("link_class_1" , browser.link(:index, 2).class_name)
99
-
100
- assert_equal("link_id" , browser.link(:index, 6).id )
101
- assert_equal("link_name" , browser.link(:index, 7).name )
102
-
103
- assert_equal("" , browser.link(:index, 7).title)
104
-
105
- assert_equal("link_title" , browser.link(:index, 8).title)
106
- end
107
-
108
- def test_link_iterator
109
- assert_equal(9, browser.links.length )
110
- assert_equal("Link Using a name" , browser.links[7].innerText)
111
-
112
- index = 1
113
- browser.links.each do |link|
114
- assert_equal(browser.link(:index, index).href , link.href )
115
- assert_equal(browser.link(:index, index).id , link.id )
116
- assert_equal(browser.link(:index, index).name , link.name )
117
- assert_equal(browser.link(:index, index).innerText , link.innerText )
118
- index+=1
119
- end
120
- end
121
-
122
- def test_div_xml_bug
123
- goto_page "div_xml.html"
124
- assert_nothing_raised {browser.link(:text, 'Create').exists? }
125
- end
126
- end
127
-
128
- class TC_Frame_Links < Test::Unit::TestCase
129
- include Watir::Exception
130
-
131
- def setup
132
- goto_page "frame_links.html"
133
- end
134
-
135
- def test_links_in_frames
136
- assert(browser.frame("linkFrame").link(:text, "test1").exists?)
137
- assert_false(browser.frame("linkFrame").link(:text, "missing").exists?)
138
-
139
- assert_raises(UnknownObjectException, "UnknownObjectException was supposed to be thrown" ) { browser.frame("linkFrame").link(:index, 199).href }
140
- assert_match(/links2/, browser.frame("linkFrame").link(:index, 1).href)
141
-
142
- count =0
143
- browser.frame("linkFrame").links.each do |l|
144
- count+=1
145
- end
146
-
147
- assert_equal( 9 , count)
148
- end
149
- end
150
-
151
- require 'unittests/iostring'
152
- class TC_showlinks < Test::Unit::TestCase
153
- tags :fails_on_firefox
154
- include MockStdoutTestCase
155
-
156
- def test_showLinks
157
- goto_page "links1.html"
158
- $stdout = @mockout
159
- browser.showLinks
160
- expected = [/^index name +id +href + text\/src$/,
161
- get_path_regex(1, "links2.html", "test1"),
162
- get_path_regex(2, "link_pass.html", "test1"),
163
- get_path_regex(3, "pass3.html", " / file:///#{$myDir.downcase}/html/images/button.jpg"),
164
- get_path_regex(4, "textarea.html", "new window"),
165
- get_path_regex(5, "textarea.html", "new window"),
166
- get_path_regex(6, "links1.html", "link using an id", "link_id"),
167
- get_path_regex(7, "links1.html", "link using a name", "link_name"),
168
- get_path_regex(8, "links1.html", "link using a title"),
169
- get_path_regex(9, "pass.html", "image and a text link / file:///#{$myDir.downcase}/html/images/triangle.jpg")]
170
- items = @mockout.split(/\n/).collect {|s| CGI.unescape(s.downcase.strip)}
171
- expected.each_with_index{|regex, x| assert_match(regex, items[x])}
172
- end
173
-
174
- def get_path_regex(idx, name, inner, nameid="")
175
- Regexp.new("^#{idx} +#{nameid} +file:///#{$myDir.downcase}/html/#{name} *#{inner}$")
176
- end
177
- end
1
+ # feature tests for Links
2
+ # revision: $Revision$
3
+
4
+ $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
5
+ require 'unittests/setup'
6
+ require 'cgi'
7
+
8
+ class TC_Links < Test::Unit::TestCase
9
+ include Watir::Exception
10
+
11
+ def setup
12
+ goto_page "links1.html"
13
+ end
14
+
15
+ tag_method :test_bad_attribute, :fails_on_firefox
16
+ def test_bad_attribute
17
+ assert_raises(MissingWayOfFindingObjectException) { browser.link(:bad_attribute, 199).click }
18
+ begin
19
+ browser.link(:bad_attribute, 199).click
20
+ rescue MissingWayOfFindingObjectException => e
21
+ assert_equal "bad_attribute is an unknown way of finding a <A> element (199)", e.to_s
22
+ end
23
+ end
24
+
25
+ def xtest_missing_links_dont_exist
26
+ assert_false(exists?{browser.link(:text, "missing")})
27
+ assert_false(exists?{browser.link(:text, /miss/)})
28
+ end
29
+
30
+ def test_link_Exists
31
+ assert(browser.link(:text, "test1").exists?)
32
+ assert(browser.link(:text, /TEST/i).exists?)
33
+ assert_false(browser.link(:text, "missing").exists?)
34
+ assert_false(browser.link(:text, /miss/).exists?)
35
+
36
+ # this assert we have to build up the path
37
+ # this is what it looks like if you do a to_s on the link file:///C:/watir_bonus/unitTests/html/links1.HTML
38
+ # but what we get back from $htmlRoot is a mixed case, so its almost impossible for use to test this correctly
39
+ # assert(browser.link(:url,'file:///C:/watir_bonus/unitTests/html/links1.HTML' ).exists?)
40
+
41
+ assert(browser.link(:url, /link_pass.html/).exists?)
42
+ assert_false(browser.link(:url, "alsomissing.html").exists?)
43
+
44
+ assert(browser.link(:id, "link_id").exists?)
45
+ assert_false(browser.link(:id, "alsomissing").exists?)
46
+
47
+ assert(browser.link(:id, /_id/).exists?)
48
+ assert_false(browser.link(:id, /alsomissing/).exists?)
49
+
50
+ assert(browser.link(:name, "link_name").exists?)
51
+ assert_false(browser.link(:name, "alsomissing").exists?)
52
+
53
+ assert(browser.link(:name, /_n/).exists?)
54
+ assert_false(browser.link(:name, /missing/).exists?)
55
+
56
+ assert(browser.link(:title, /ti/).exists?)
57
+ assert(browser.link(:title, "link_title").exists?)
58
+
59
+ assert_false(browser.link(:title, /missing/).exists?)
60
+
61
+ assert(browser.link(:url, /_pass/).exists?)
62
+ assert_false(browser.link(:url, /dont_exist/).exists?)
63
+ end
64
+
65
+ def test_link_click
66
+ browser.link(:text, "test1").click
67
+ assert( browser.text.include?("Links2-Pass") )
68
+ end
69
+ def test_link2_click
70
+ browser.link(:url, /link_pass.html/).click
71
+ assert( browser.text.include?("Links3-Pass") )
72
+ end
73
+ def test_link3_click
74
+ browser.link(:index, 1).click
75
+ assert( browser.text.include?("Links2-Pass") )
76
+ end
77
+ def test_link4_click
78
+ assert_raises(UnknownObjectException, "UnknownObjectException was supposed to be thrown" ) { browser.link(:index, 199).click }
79
+ end
80
+
81
+ def test_link_properties
82
+ assert_raises(UnknownObjectException) { browser.link(:index, 199).href }
83
+ assert_raises(UnknownObjectException) { browser.link(:index, 199).value}
84
+ assert_raises(UnknownObjectException) { browser.link(:index, 199).innerText }
85
+ assert_raises(UnknownObjectException) { browser.link(:index, 199).name }
86
+ assert_raises(UnknownObjectException) { browser.link(:index, 199).id }
87
+ assert_raises(UnknownObjectException) { browser.link(:index, 199).disabled }
88
+ assert_raises(UnknownObjectException) { browser.link(:index, 199).type }
89
+ assert_raises(UnknownObjectException) { browser.link(:index, 199).class_name }
90
+
91
+ assert_match(/links2/ ,browser.link(:index, 1).href )
92
+ assert_equal("" , browser.link(:index, 1).value)
93
+ assert_equal("test1" , browser.link(:index, 1).innerText )
94
+ assert_equal("" , browser.link(:index, 1).name )
95
+ assert_equal("" , browser.link(:index, 1).id )
96
+ assert_equal(false , browser.link(:index, 1).disabled )
97
+ assert_equal("" , browser.link(:index, 1).class_name)
98
+ assert_equal("link_class_1" , browser.link(:index, 2).class_name)
99
+
100
+ assert_equal("link_id" , browser.link(:index, 6).id )
101
+ assert_equal("link_name" , browser.link(:index, 7).name )
102
+
103
+ assert_equal("" , browser.link(:index, 7).title)
104
+
105
+ assert_equal("link_title" , browser.link(:index, 8).title)
106
+ end
107
+
108
+ def test_link_iterator
109
+ assert_equal(9, browser.links.length )
110
+ assert_equal("Link Using a name" , browser.links[7].innerText)
111
+
112
+ index = 1
113
+ browser.links.each do |link|
114
+ assert_equal(browser.link(:index, index).href , link.href )
115
+ assert_equal(browser.link(:index, index).id , link.id )
116
+ assert_equal(browser.link(:index, index).name , link.name )
117
+ assert_equal(browser.link(:index, index).innerText , link.innerText )
118
+ index+=1
119
+ end
120
+ end
121
+
122
+ def test_div_xml_bug
123
+ goto_page "div_xml.html"
124
+ assert_nothing_raised {browser.link(:text, 'Create').exists? }
125
+ end
126
+ end
127
+
128
+ class TC_Frame_Links < Test::Unit::TestCase
129
+ include Watir::Exception
130
+
131
+ def setup
132
+ goto_page "frame_links.html"
133
+ end
134
+
135
+ def test_links_in_frames
136
+ assert(browser.frame("linkFrame").link(:text, "test1").exists?)
137
+ assert_false(browser.frame("linkFrame").link(:text, "missing").exists?)
138
+
139
+ assert_raises(UnknownObjectException, "UnknownObjectException was supposed to be thrown" ) { browser.frame("linkFrame").link(:index, 199).href }
140
+ assert_match(/links2/, browser.frame("linkFrame").link(:index, 1).href)
141
+
142
+ count =0
143
+ browser.frame("linkFrame").links.each do |l|
144
+ count+=1
145
+ end
146
+
147
+ assert_equal( 9 , count)
148
+ end
149
+ end
150
+
151
+ class TC_showlinks < Test::Unit::TestCase
152
+ tags :fails_on_firefox
153
+ include CaptureIOHelper
154
+
155
+ def test_showLinks
156
+ goto_page "links1.html"
157
+ actual = capture_stdout { browser.showLinks }
158
+ expected = [/^index name +id +href + text\/src$/,
159
+ get_path_regex(1, "links2.html", "test1"),
160
+ get_path_regex(2, "link_pass.html", "test1"),
161
+ get_path_regex(3, "pass3.html", " / file:///#{$myDir.downcase}/html/images/button.jpg"),
162
+ get_path_regex(4, "textarea.html", "new window"),
163
+ get_path_regex(5, "textarea.html", "new window"),
164
+ get_path_regex(6, "links1.html", "link using an id", "link_id"),
165
+ get_path_regex(7, "links1.html", "link using a name", "link_name"),
166
+ get_path_regex(8, "links1.html", "link using a title"),
167
+ get_path_regex(9, "pass.html", "image and a text link / file:///#{$myDir.downcase}/html/images/triangle.jpg")]
168
+ items = actual.split(/\n/).collect {|s| CGI.unescape(s.downcase.strip)}
169
+ expected.each_with_index{|regex, x| assert_match(regex, items[x])}
170
+ end
171
+
172
+ def get_path_regex(idx, name, inner, nameid="")
173
+ Regexp.new("^#{idx} +#{nameid} +file:///#{$myDir.downcase}/html/#{name} *#{inner}$")
174
+ end
175
+ end