watir 1.6.5 → 1.6.6.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (186) hide show
  1. data/CHANGES +461 -326
  2. data/VERSION +1 -0
  3. data/bin/watir-console +6 -6
  4. data/lib/changes.rb +3 -3
  5. data/lib/license.rb +38 -38
  6. data/lib/readme.rb +140 -140
  7. data/lib/watir/WindowHelper.rb +49 -49
  8. data/lib/watir/camel_case.rb +66 -66
  9. data/lib/watir/clickJSDialog.rb +19 -19
  10. data/lib/watir/close_all.rb +37 -37
  11. data/lib/watir/collections.rb +392 -344
  12. data/lib/watir/container.rb +857 -815
  13. data/lib/watir/contrib/enabled_popup.rb +20 -20
  14. data/lib/watir/contrib/ie-new-process.rb +27 -27
  15. data/lib/watir/contrib/page_checker.rb +29 -29
  16. data/lib/watir/cookiemanager.rb +55 -55
  17. data/lib/watir/core.rb +28 -0
  18. data/lib/watir/core_ext.rb +17 -17
  19. data/lib/watir/datahandler.rb +107 -107
  20. data/lib/watir/dialog.rb +46 -46
  21. data/lib/watir/element.rb +351 -343
  22. data/lib/watir/element_collections.rb +97 -97
  23. data/lib/watir/form.rb +170 -170
  24. data/lib/watir/frame.rb +59 -59
  25. data/lib/watir/html_element.rb +22 -0
  26. data/lib/watir/ie-class.rb +1006 -1009
  27. data/lib/watir/ie-process.rb +39 -39
  28. data/lib/watir/ie.rb +70 -133
  29. data/lib/watir/image.rb +130 -130
  30. data/lib/watir/input_elements.rb +614 -572
  31. data/lib/watir/irb-history.rb +30 -30
  32. data/lib/watir/link.rb +64 -64
  33. data/lib/watir/locator.rb +200 -176
  34. data/lib/watir/logger.rb +19 -19
  35. data/lib/watir/modal_dialog.rb +122 -122
  36. data/lib/watir/module.rb +37 -0
  37. data/lib/watir/non_control_elements.rb +145 -145
  38. data/lib/watir/page-container.rb +116 -107
  39. data/lib/watir/popup.rb +29 -29
  40. data/lib/watir/process.rb +19 -19
  41. data/lib/watir/screen_capture.rb +115 -115
  42. data/lib/watir/setFileDialog.rb +16 -16
  43. data/lib/watir/table.rb +395 -362
  44. data/lib/watir/watir_simple.rb +475 -475
  45. data/lib/watir/win32.rb +35 -35
  46. data/lib/watir/win32ole.rb +14 -14
  47. data/lib/watir/winClicker.rb +496 -496
  48. data/rakefile.rb +70 -0
  49. data/unittests/all_tests.rb +10 -10
  50. data/unittests/buttons_xpath_test.rb +69 -69
  51. data/unittests/checkbox_test.rb +179 -179
  52. data/unittests/checkbox_xpath_test.rb +107 -107
  53. data/unittests/click_no_wait_test.rb +21 -0
  54. data/unittests/core_tests.rb +17 -17
  55. data/unittests/css_test.rb +42 -35
  56. data/unittests/defer_test.rb +46 -46
  57. data/unittests/dialog_test.rb +77 -77
  58. data/unittests/div2_xpath_test.rb +21 -21
  59. data/unittests/div_test.rb +188 -188
  60. data/unittests/div_xpath_test.rb +96 -96
  61. data/unittests/element_test.rb +49 -0
  62. data/unittests/errorchecker_test.rb +32 -22
  63. data/unittests/filefield_test.rb +39 -39
  64. data/unittests/filefield_xpath_test.rb +33 -33
  65. data/unittests/form_test.rb +280 -280
  66. data/unittests/form_xpath_test.rb +252 -252
  67. data/unittests/frame_test.rb +155 -155
  68. data/unittests/google_form_test.rb +15 -15
  69. data/unittests/html/JavascriptClick.html +39 -39
  70. data/unittests/html/blankpage.html +11 -11
  71. data/unittests/html/buttons1.html +40 -40
  72. data/unittests/html/checkboxes1.html +89 -89
  73. data/unittests/html/click_no_wait.html +14 -0
  74. data/unittests/html/complex_table.html +36 -36
  75. data/unittests/html/cssTest.html +42 -42
  76. data/unittests/html/depot_store.html +59 -59
  77. data/unittests/html/div.html +93 -93
  78. data/unittests/html/div_xml.html +20 -20
  79. data/unittests/html/fileupload.html +45 -45
  80. data/unittests/html/formTest1.html +38 -38
  81. data/unittests/html/forms2.html +44 -44
  82. data/unittests/html/forms3.html +131 -131
  83. data/unittests/html/forms4.html +27 -27
  84. data/unittests/html/frame_buttons.html +3 -3
  85. data/unittests/html/frame_links.html +3 -3
  86. data/unittests/html/frame_multi.html +4 -4
  87. data/unittests/html/google_india.html +119 -119
  88. data/unittests/html/iframeTest.html +12 -12
  89. data/unittests/html/iframeTest1.html +6 -6
  90. data/unittests/html/iframeTest2.html +5 -5
  91. data/unittests/html/images1.html +66 -66
  92. data/unittests/html/javascriptevents.html +35 -35
  93. data/unittests/html/link_pass.html +10 -10
  94. data/unittests/html/links1.html +38 -38
  95. data/unittests/html/links2.html +10 -10
  96. data/unittests/html/links_multi.html +14 -14
  97. data/unittests/html/list_matters.html +720 -720
  98. data/unittests/html/lists.html +17 -17
  99. data/unittests/html/map_test.html +31 -31
  100. data/unittests/html/modal_dialog.html +10 -10
  101. data/unittests/html/modal_dialog_launcher.html +11 -11
  102. data/unittests/html/nestedFrames.html +6 -6
  103. data/unittests/html/new_browser.html +16 -16
  104. data/unittests/html/pass.html +12 -12
  105. data/unittests/html/popups1.html +59 -59
  106. data/unittests/html/pre.html +27 -27
  107. data/unittests/html/radioButtons1.html +71 -71
  108. data/unittests/html/select_tealeaf.html +54 -54
  109. data/unittests/html/selectboxes1.html +52 -52
  110. data/unittests/html/simple_table.html +26 -26
  111. data/unittests/html/simple_table_buttons.html +104 -104
  112. data/unittests/html/simple_table_columns.html +76 -76
  113. data/unittests/html/table1.html +181 -181
  114. data/unittests/html/tableCell_using_xpath.html +19 -19
  115. data/unittests/html/table_and_tablerow_to_a.html +174 -0
  116. data/unittests/html/textarea.html +30 -30
  117. data/unittests/html/textfields1.html +88 -88
  118. data/unittests/html/textsearch.html +44 -44
  119. data/unittests/html/wallofcheckboxes.html +1003 -1003
  120. data/unittests/html/xpath_nbsp.html +12 -12
  121. data/unittests/ie_exists_test.rb +33 -33
  122. data/unittests/ie_mock.rb +94 -94
  123. data/unittests/ie_test.rb +51 -51
  124. data/unittests/images_test.rb +157 -157
  125. data/unittests/images_xpath_test.rb +91 -91
  126. data/unittests/links_multi_test.rb +48 -48
  127. data/unittests/links_test.rb +175 -175
  128. data/unittests/links_xpath_test.rb +39 -39
  129. data/unittests/lists_test.rb +32 -32
  130. data/unittests/map_test.rb +98 -98
  131. data/unittests/minmax_test.rb +31 -31
  132. data/unittests/navigate_test.rb +39 -39
  133. data/unittests/nbsp_xpath_test.rb +16 -16
  134. data/unittests/non_core_tests.rb +12 -12
  135. data/unittests/other/WindowLogonExample.rb +27 -27
  136. data/unittests/other/WindowLogonExtra.rb +6 -6
  137. data/unittests/other/all_tests_concurrent.rb +57 -57
  138. data/unittests/other/jscriptExtraAlert.rb +6 -6
  139. data/unittests/other/jscriptExtraConfirmCancel.rb +6 -6
  140. data/unittests/other/jscriptExtraConfirmOk.rb +6 -6
  141. data/unittests/other/jscriptPushButton.rb +6 -6
  142. data/unittests/other/jscript_test.rb +63 -63
  143. data/unittests/other/navigate_exception_test.rb +24 -24
  144. data/unittests/other/rexml_unit_test.rb +27 -27
  145. data/unittests/other/screen_capture_test.rb +54 -54
  146. data/unittests/other/testcase_method_order_test.rb +35 -35
  147. data/unittests/other/testcase_verify_test.rb +24 -24
  148. data/unittests/other/wait_until_test.rb +99 -99
  149. data/unittests/pagecontainstext_test.rb +69 -69
  150. data/unittests/parent_child_test.rb +43 -43
  151. data/unittests/perf_test.rb +20 -20
  152. data/unittests/popups_test.rb +43 -43
  153. data/unittests/pre_test.rb +53 -53
  154. data/unittests/radios_test.rb +212 -212
  155. data/unittests/radios_xpath_test.rb +101 -101
  156. data/unittests/security_setting_test.rb +23 -23
  157. data/unittests/selectbox_test.rb +148 -148
  158. data/unittests/selectbox_xpath_test.rb +113 -113
  159. data/unittests/setup.rb +87 -77
  160. data/unittests/speed_settings_test.rb +67 -67
  161. data/unittests/table_and_tablerow_to_a_test.rb +117 -0
  162. data/unittests/table_cell_using_xpath_test.rb +35 -35
  163. data/unittests/table_test.rb +376 -376
  164. data/unittests/table_xpath_test.rb +110 -110
  165. data/unittests/test_tests.rb +9 -9
  166. data/unittests/textarea_test.rb +92 -92
  167. data/unittests/textarea_xpath_test.rb +78 -78
  168. data/unittests/textfield_for_ch_char_test.rb +31 -31
  169. data/unittests/textfields_test.rb +218 -218
  170. data/unittests/textfields_xpath_test.rb +111 -111
  171. data/unittests/window_tests.rb +10 -10
  172. data/unittests/windows/attach_to_existing_window_test.rb +53 -53
  173. data/unittests/windows/attach_to_new_window_test.rb +83 -83
  174. data/unittests/windows/close_window_test.rb +20 -20
  175. data/unittests/windows/frame_links_test.rb +25 -25
  176. data/unittests/windows/ie-each_test.rb +47 -47
  177. data/unittests/windows/iedialog_test.rb +54 -54
  178. data/unittests/windows/js_events_test.rb +42 -55
  179. data/unittests/windows/modal_dialog_test.rb +128 -128
  180. data/unittests/windows/new_test.rb +57 -57
  181. data/unittests/windows/open_close_test.rb +18 -18
  182. data/unittests/windows/send_keys_test.rb +33 -33
  183. data/unittests/xpath_tests.rb +10 -10
  184. metadata +85 -31
  185. data/lib/watir/utils.rb +0 -20
  186. data/lib/watir/version.rb +0 -5
@@ -1,111 +1,111 @@
1
- # feature tests for Text Fields
2
- # revision: $Revision$
3
-
4
- $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
5
- require 'unittests/setup'
6
-
7
- class TC_Fields_XPath < Test::Unit::TestCase
8
- include Watir::Exception
9
-
10
- def setup
11
- goto_page "textfields1.html"
12
- end
13
-
14
- def test_text_field_exists
15
- assert(browser.text_field(:xpath , "//input[@name='text1']/").exists?)
16
- assert_false(browser.text_field(:xpath , "//input[@name='missing']/").exists?)
17
-
18
- assert(browser.text_field(:xpath , "//input[@id='text2']/").exists?)
19
- assert_false(browser.text_field(:xpath , "//input[@id='alsomissing']/").exists?)
20
-
21
- #assert(browser.text_field(:xpath , "//input[@beforeText='This Text After']/").exists? )
22
- #assert(browser.text_field(:xpath , "//input[@afterText='This Text Before']/").exists? )
23
- end
24
-
25
- def test_text_field_dragContentsTo
26
- browser.text_field(:xpath , "//input[@name='text1']/").dragContentsTo(:xpath , "//input[@id='text2']/")
27
- assert_equal(browser.text_field(:xpath , "//input[@name='text1']/").value, "" )
28
- assert_equal(browser.text_field(:xpath , "//input[@id='text2']/").value, "goodbye allHello World" )
29
- end
30
-
31
- def test_text_field_VerifyContents
32
- assert(browser.text_field(:xpath , "//input[@name='text1']/").verify_contains("Hello World") )
33
- assert(browser.text_field(:xpath , "//input[@name='text1']/").verify_contains(/Hello\sW/ ) )
34
- assert_false(browser.text_field(:xpath , "//input[@name='text1']/").verify_contains("Ruby") )
35
- assert_false(browser.text_field(:xpath , "//input[@name='text1']/").verify_contains(/R/) )
36
- assert_raises(UnknownObjectException) { browser.text_field(:xpath , "//input[@name='NoName']/").verify_contains("No field to get a value of") }
37
-
38
- assert(browser.text_field(:xpath , "//input[@id='text2']/").verify_contains("goodbye all") )
39
- assert_raises(UnknownObjectException) { browser.text_field(:xpath , "//input[@id='noID']/").verify_contains("No field to get a value of") }
40
- end
41
-
42
- def test_text_field_enabled
43
- assert_false(browser.text_field(:xpath , "//input[@name='disabled']/").enabled? )
44
- assert(browser.text_field(:xpath , "//input[@name='text1']/").enabled? )
45
- assert(browser.text_field(:xpath , "//input[@id='text2']/").enabled? )
46
- end
47
-
48
- def test_text_field_readOnly
49
- assert_false(browser.text_field(:xpath , "//input[@name='disabled']/").readonly? )
50
- assert(browser.text_field(:xpath , "//input[@name='readOnly']/").readonly? )
51
- assert(browser.text_field(:xpath , "//input[@id='readOnly2']/").readonly? )
52
- end
53
-
54
- def test_text_field_value
55
- assert_raises(UnknownObjectException , "ObjectReadOnlyException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@name='missing_field']/").append("Some Text") }
56
- assert_equal( "Hello World" , browser.text_field(:xpath , "//input[@name='text1']/").value )
57
- end
58
-
59
- def build_to_s_regex(lhs, rhs)
60
- Regexp.new("^#{lhs}: +#{rhs}$")
61
- end
62
-
63
- def test_text_field_Append
64
- assert_raises(ObjectReadOnlyException , "ObjectReadOnlyException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@id='readOnly2']/").append("Some Text") }
65
- assert_raises(ObjectDisabledException , "ObjectDisabledException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@name='disabled']/").append("Some Text") }
66
- assert_raises(UnknownObjectException , "UnknownObjectException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@name='missing_field']/").append("Some Text") }
67
-
68
- browser.text_field(:xpath , "//input[@name='text1']/").append(" Some Text")
69
- assert_equal( "Hello World Some Text" , browser.text_field(:xpath , "//input[@name='text1']/").value )
70
- end
71
-
72
-
73
- def test_text_field_Clear
74
- assert_raises(ObjectReadOnlyException , "ObjectReadOnlyException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@id='readOnly2']/").append("Some Text") }
75
- assert_raises(ObjectDisabledException , "ObjectReadOnlyException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@name='disabled']/").append("Some Text") }
76
- assert_raises(UnknownObjectException , "ObjectReadOnlyException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@name='missing_field']/").append("Some Text") }
77
-
78
- browser.text_field(:xpath , "//input[@name='text1']/").clear
79
- assert_equal( "" , browser.text_field(:xpath , "//input[@name='text1']/").value )
80
- end
81
-
82
- def test_text_field_Set
83
- assert_raises(ObjectReadOnlyException , "ObjectReadOnlyException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@id='readOnly2']/").append("Some Text") }
84
- assert_raises(ObjectDisabledException , "ObjectReadOnlyException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@name='disabled']/").append("Some Text") }
85
- assert_raises(UnknownObjectException , "ObjectReadOnlyException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@name='missing_field']/").append("Some Text") }
86
-
87
- browser.text_field(:xpath , "//input[@name='text1']/").set("watir IE Controller")
88
- assert_equal( "watir IE Controller" , browser.text_field(:xpath , "//input[@name='text1']/").value )
89
- end
90
-
91
- def test_JS_Events
92
- browser.text_field(:xpath , "//input[@name='events_tester']/").set('p')
93
-
94
- # the following line has an extra keypress at the begining, as we mimic the delete key being pressed
95
- assert_equal( "keypresskeydownkeypresskeyup" , browser.text_field(:xpath , "//textarea[@name='events_text']/").value.gsub("\r\n" , "") )
96
- browser.button(:value , "Clear Events Box").click
97
- browser.text_field(:xpath , "//input[@name='events_tester']/").set('ab')
98
-
99
- # the following line has an extra keypress at the begining, as we mimic the delete key being pressed
100
- assert_equal( "keypresskeydownkeypresskeyupkeydownkeypresskeyup" , browser.text_field(:xpath , "//textarea[@name='events_text']/").value.gsub("\r\n" , "") )
101
- end
102
-
103
- def test_password
104
- browser.text_field(:xpath , "//input[@name='password1']/").set("secret")
105
- assert( 'secret' , browser.text_field(:xpath , "//input[@name='password1']/").value )
106
-
107
- browser.text_field(:xpath , "//input[@id='password1']/").set("top_secret")
108
- assert( 'top_secret' , browser.text_field(:xpath , "//input[@id='password1']/").value )
109
- end
110
-
111
- end
1
+ # feature tests for Text Fields
2
+ # revision: $Revision$
3
+
4
+ $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
5
+ require 'unittests/setup'
6
+
7
+ class TC_Fields_XPath < Test::Unit::TestCase
8
+ include Watir::Exception
9
+
10
+ def setup
11
+ goto_page "textfields1.html"
12
+ end
13
+
14
+ def test_text_field_exists
15
+ assert(browser.text_field(:xpath , "//input[@name='text1']/").exists?)
16
+ assert_false(browser.text_field(:xpath , "//input[@name='missing']/").exists?)
17
+
18
+ assert(browser.text_field(:xpath , "//input[@id='text2']/").exists?)
19
+ assert_false(browser.text_field(:xpath , "//input[@id='alsomissing']/").exists?)
20
+
21
+ #assert(browser.text_field(:xpath , "//input[@beforeText='This Text After']/").exists? )
22
+ #assert(browser.text_field(:xpath , "//input[@afterText='This Text Before']/").exists? )
23
+ end
24
+
25
+ def test_text_field_dragContentsTo
26
+ browser.text_field(:xpath , "//input[@name='text1']/").dragContentsTo(:xpath , "//input[@id='text2']/")
27
+ assert_equal(browser.text_field(:xpath , "//input[@name='text1']/").value, "" )
28
+ assert_equal(browser.text_field(:xpath , "//input[@id='text2']/").value, "goodbye allHello World" )
29
+ end
30
+
31
+ def test_text_field_VerifyContents
32
+ assert(browser.text_field(:xpath , "//input[@name='text1']/").verify_contains("Hello World") )
33
+ assert(browser.text_field(:xpath , "//input[@name='text1']/").verify_contains(/Hello\sW/ ) )
34
+ assert_false(browser.text_field(:xpath , "//input[@name='text1']/").verify_contains("Ruby") )
35
+ assert_false(browser.text_field(:xpath , "//input[@name='text1']/").verify_contains(/R/) )
36
+ assert_raises(UnknownObjectException) { browser.text_field(:xpath , "//input[@name='NoName']/").verify_contains("No field to get a value of") }
37
+
38
+ assert(browser.text_field(:xpath , "//input[@id='text2']/").verify_contains("goodbye all") )
39
+ assert_raises(UnknownObjectException) { browser.text_field(:xpath , "//input[@id='noID']/").verify_contains("No field to get a value of") }
40
+ end
41
+
42
+ def test_text_field_enabled
43
+ assert_false(browser.text_field(:xpath , "//input[@name='disabled']/").enabled? )
44
+ assert(browser.text_field(:xpath , "//input[@name='text1']/").enabled? )
45
+ assert(browser.text_field(:xpath , "//input[@id='text2']/").enabled? )
46
+ end
47
+
48
+ def test_text_field_readOnly
49
+ assert_false(browser.text_field(:xpath , "//input[@name='disabled']/").readonly? )
50
+ assert(browser.text_field(:xpath , "//input[@name='readOnly']/").readonly? )
51
+ assert(browser.text_field(:xpath , "//input[@id='readOnly2']/").readonly? )
52
+ end
53
+
54
+ def test_text_field_value
55
+ assert_raises(UnknownObjectException , "ObjectReadOnlyException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@name='missing_field']/").append("Some Text") }
56
+ assert_equal( "Hello World" , browser.text_field(:xpath , "//input[@name='text1']/").value )
57
+ end
58
+
59
+ def build_to_s_regex(lhs, rhs)
60
+ Regexp.new("^#{lhs}: +#{rhs}$")
61
+ end
62
+
63
+ def test_text_field_Append
64
+ assert_raises(ObjectReadOnlyException , "ObjectReadOnlyException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@id='readOnly2']/").append("Some Text") }
65
+ assert_raises(ObjectDisabledException , "ObjectDisabledException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@name='disabled']/").append("Some Text") }
66
+ assert_raises(UnknownObjectException , "UnknownObjectException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@name='missing_field']/").append("Some Text") }
67
+
68
+ browser.text_field(:xpath , "//input[@name='text1']/").append(" Some Text")
69
+ assert_equal( "Hello World Some Text" , browser.text_field(:xpath , "//input[@name='text1']/").value )
70
+ end
71
+
72
+
73
+ def test_text_field_Clear
74
+ assert_raises(ObjectReadOnlyException , "ObjectReadOnlyException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@id='readOnly2']/").append("Some Text") }
75
+ assert_raises(ObjectDisabledException , "ObjectReadOnlyException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@name='disabled']/").append("Some Text") }
76
+ assert_raises(UnknownObjectException , "ObjectReadOnlyException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@name='missing_field']/").append("Some Text") }
77
+
78
+ browser.text_field(:xpath , "//input[@name='text1']/").clear
79
+ assert_equal( "" , browser.text_field(:xpath , "//input[@name='text1']/").value )
80
+ end
81
+
82
+ def test_text_field_Set
83
+ assert_raises(ObjectReadOnlyException , "ObjectReadOnlyException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@id='readOnly2']/").append("Some Text") }
84
+ assert_raises(ObjectDisabledException , "ObjectReadOnlyException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@name='disabled']/").append("Some Text") }
85
+ assert_raises(UnknownObjectException , "ObjectReadOnlyException was supposed to be thrown" ) { browser.text_field(:xpath , "//input[@name='missing_field']/").append("Some Text") }
86
+
87
+ browser.text_field(:xpath , "//input[@name='text1']/").set("watir IE Controller")
88
+ assert_equal( "watir IE Controller" , browser.text_field(:xpath , "//input[@name='text1']/").value )
89
+ end
90
+
91
+ def test_JS_Events
92
+ browser.text_field(:xpath , "//input[@name='events_tester']/").set('p')
93
+
94
+ # the following line has an extra keypress at the begining, as we mimic the delete key being pressed
95
+ assert_equal( "keypresskeydownkeypresskeyup" , browser.text_field(:xpath , "//textarea[@name='events_text']/").value.gsub("\r\n" , "") )
96
+ browser.button(:value , "Clear Events Box").click
97
+ browser.text_field(:xpath , "//input[@name='events_tester']/").set('ab')
98
+
99
+ # the following line has an extra keypress at the begining, as we mimic the delete key being pressed
100
+ assert_equal( "keypresskeydownkeypresskeyupkeydownkeypresskeyup" , browser.text_field(:xpath , "//textarea[@name='events_text']/").value.gsub("\r\n" , "") )
101
+ end
102
+
103
+ def test_password
104
+ browser.text_field(:xpath , "//input[@name='password1']/").set("secret")
105
+ assert( 'secret' , browser.text_field(:xpath , "//input[@name='password1']/").value )
106
+
107
+ browser.text_field(:xpath , "//input[@id='password1']/").set("top_secret")
108
+ assert( 'top_secret' , browser.text_field(:xpath , "//input[@id='password1']/").value )
109
+ end
110
+
111
+ end
@@ -1,10 +1,10 @@
1
- TOPDIR = File.join(File.dirname(__FILE__), '..')
2
- $LOAD_PATH.unshift TOPDIR
3
-
4
- ENV['watir_visible'] = 'true'
5
-
6
- require 'unittests/setup.rb'
7
-
8
- Dir.chdir TOPDIR
9
- $window_tests.each {|x| require x}
10
-
1
+ TOPDIR = File.join(File.dirname(__FILE__), '..')
2
+ $LOAD_PATH.unshift TOPDIR
3
+
4
+ ENV['watir_visible'] = 'true'
5
+
6
+ require 'unittests/setup.rb'
7
+
8
+ Dir.chdir TOPDIR
9
+ $window_tests.each {|x| require x}
10
+
@@ -1,53 +1,53 @@
1
- # feature tests for attaching to existing IE windows
2
- # revision: $Revision$
3
-
4
- $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', '..') unless $SETUP_LOADED
5
- require 'unittests/setup'
6
-
7
- class TC_ExistingWindow < Test::Unit::TestCase
8
- include Watir
9
-
10
- def setup
11
- goto_page 'buttons1.html'
12
- @original_timeout = IE.attach_timeout
13
- end
14
- def teardown
15
- IE.attach_timeout = @original_timeout
16
- end
17
-
18
- def test_find_window
19
- ie = IE.find(:title, 'Test page for buttons')
20
- assert_equal("Test page for buttons", ie.title)
21
- end
22
-
23
- def test_find_window_misses
24
- ie = IE.find(:title, 'no such window')
25
- assert_nil ie
26
- end
27
-
28
- def test_missing_window
29
- IE.attach_timeout = 0.1
30
- assert_raises(NoMatchingWindowFoundException) { IE.attach(:title, "missing") }
31
- assert_raises(NoMatchingWindowFoundException) { IE.attach(:title, /missing/) }
32
- assert_raises(NoMatchingWindowFoundException) { IE.attach(:url, "missing") }
33
- assert_raises(NoMatchingWindowFoundException) { IE.attach(:url, /missing/) }
34
- end
35
-
36
- def test_existing_window
37
- ie3 = nil
38
- ie3 = IE.attach(:title , /buttons/i)
39
- assert_equal("Test page for buttons", ie3.title)
40
- ie3 = nil
41
-
42
- ie3 = IE.attach(:title , "Test page for buttons")
43
- assert_equal("Test page for buttons", ie3.title)
44
- ie3 = nil
45
-
46
- ie3 = IE.attach(:url, /buttons1.html/)
47
- assert_equal("Test page for buttons", ie3.title)
48
- ie3 = nil
49
-
50
- #hard to test :url with explicit text
51
- end
52
- end
53
-
1
+ # feature tests for attaching to existing IE windows
2
+ # revision: $Revision$
3
+
4
+ $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', '..') unless $SETUP_LOADED
5
+ require 'unittests/setup'
6
+
7
+ class TC_ExistingWindow < Test::Unit::TestCase
8
+ include Watir
9
+
10
+ def setup
11
+ goto_page 'buttons1.html'
12
+ @original_timeout = IE.attach_timeout
13
+ end
14
+ def teardown
15
+ IE.attach_timeout = @original_timeout
16
+ end
17
+
18
+ def test_find_window
19
+ ie = IE.find(:title, 'Test page for buttons')
20
+ assert_equal("Test page for buttons", ie.title)
21
+ end
22
+
23
+ def test_find_window_misses
24
+ ie = IE.find(:title, 'no such window')
25
+ assert_nil ie
26
+ end
27
+
28
+ def test_missing_window
29
+ IE.attach_timeout = 0.1
30
+ assert_raises(NoMatchingWindowFoundException) { IE.attach(:title, "missing") }
31
+ assert_raises(NoMatchingWindowFoundException) { IE.attach(:title, /missing/) }
32
+ assert_raises(NoMatchingWindowFoundException) { IE.attach(:url, "missing") }
33
+ assert_raises(NoMatchingWindowFoundException) { IE.attach(:url, /missing/) }
34
+ end
35
+
36
+ def test_existing_window
37
+ ie3 = nil
38
+ ie3 = IE.attach(:title , /buttons/i)
39
+ assert_equal("Test page for buttons", ie3.title)
40
+ ie3 = nil
41
+
42
+ ie3 = IE.attach(:title , "Test page for buttons")
43
+ assert_equal("Test page for buttons", ie3.title)
44
+ ie3 = nil
45
+
46
+ ie3 = IE.attach(:url, /buttons1.html/)
47
+ assert_equal("Test page for buttons", ie3.title)
48
+ ie3 = nil
49
+
50
+ #hard to test :url with explicit text
51
+ end
52
+ end
53
+
@@ -1,83 +1,83 @@
1
- # feature tests for attaching to new IE windows
2
- # revision: $Revision$
3
-
4
- $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', '..') unless $SETUP_LOADED
5
- require 'unittests/setup'
6
- require 'watir/testcase'
7
-
8
- class TC_NewWindow< Watir::TestCase
9
- include Watir
10
-
11
- def setup
12
- @original_timeout = IE.attach_timeout
13
- goto_page "new_browser.html"
14
- end
15
- def teardown
16
- IE.attach_timeout = @original_timeout
17
- end
18
-
19
- def test_simply_attach_to_new_window
20
- IE.attach_timeout = 0.2
21
- browser.link(:text, 'New Window').click
22
- ie_new = IE.attach(:title, 'Pass Page')
23
- assert(ie_new.text.include?('PASS'))
24
- ie_new.close
25
- end
26
-
27
- def test_attach_to_new_window_using_separate_process
28
- browser.eval_in_spawned_process "link(:text, 'New Window').click"
29
- IE.attach_timeout = 6.0
30
- ie_new = IE.attach(:title, 'Pass Page')
31
- assert(ie_new.text.include?('PASS'))
32
- ie_new.close
33
- end
34
-
35
- def test_attach_to_new_window_using_click_no_wait
36
- # this test is sometimes failing with a "Canvas does not allow drawing" error
37
- # this is with IE7. I think the problem could be with the highlighting of the
38
- # button from the separate process.
39
- browser.link(:text, 'New Window').click_no_wait
40
- IE.attach_timeout = 6.0
41
- ie_new = IE.attach(:title, 'Pass Page')
42
- assert(ie_new.text.include?('PASS'))
43
- ie_new.close
44
- end
45
-
46
- def test_click_no_wait_works_in_a_container
47
- browser.p(:index, 1).link(:text, 'New Window').click_no_wait
48
- IE.attach_timeout = 6.0
49
- ie_new = IE.attach(:title, 'Pass Page')
50
- assert(ie_new.text.include?('PASS'))
51
- ie_new.close
52
- end
53
-
54
- def test_attach_to_slow_window_works_with_delay
55
- browser.span(:text, 'New Window Slowly').click
56
- IE.attach_timeout = 4.0
57
- sleep 1.0
58
- ie_new = IE.attach(:title, 'Test page for buttons')
59
- assert(ie_new.text.include?('Blank page to fill in the frames'))
60
- ie_new.close
61
- end
62
-
63
- def test_attach_to_slow_window_works_without_waiting
64
- browser.span(:text, 'New Window Slowly').click
65
- IE.attach_timeout = 3.0
66
- ie_new = IE.attach(:title, 'Test page for buttons')
67
- assert(ie_new.text.include?('Blank page to fill in the frames'))
68
- ie_new.close
69
- end
70
-
71
- def test_attach_timesout_when_window_takes_too_long
72
- IE.attach_timeout = 0.2
73
- browser.text_field(:name, 'delay').set('2')
74
- browser.span(:text, 'New Window Slowly').click
75
- assert_raise(Watir::Exception::NoMatchingWindowFoundException) do
76
- IE.attach(:title, 'Test page for buttons')
77
- end
78
- sleep 2.0 # clean up
79
- IE.attach_timeout = 6.0
80
- IE.attach(:title, 'Test page for buttons').close
81
- end
82
-
83
- end
1
+ # feature tests for attaching to new IE windows
2
+ # revision: $Revision$
3
+
4
+ $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', '..') unless $SETUP_LOADED
5
+ require 'unittests/setup'
6
+ require 'watir/testcase'
7
+
8
+ class TC_NewWindow< Watir::TestCase
9
+ include Watir
10
+
11
+ def setup
12
+ @original_timeout = IE.attach_timeout
13
+ goto_page "new_browser.html"
14
+ end
15
+ def teardown
16
+ IE.attach_timeout = @original_timeout
17
+ end
18
+
19
+ def test_simply_attach_to_new_window
20
+ IE.attach_timeout = 0.2
21
+ browser.link(:text, 'New Window').click
22
+ ie_new = IE.attach(:title, 'Pass Page')
23
+ assert(ie_new.text.include?('PASS'))
24
+ ie_new.close
25
+ end
26
+
27
+ def test_attach_to_new_window_using_separate_process
28
+ browser.eval_in_spawned_process "link(:text, 'New Window').click"
29
+ IE.attach_timeout = 6.0
30
+ ie_new = IE.attach(:title, 'Pass Page')
31
+ assert(ie_new.text.include?('PASS'))
32
+ ie_new.close
33
+ end
34
+
35
+ def test_attach_to_new_window_using_click_no_wait
36
+ # this test is sometimes failing with a "Canvas does not allow drawing" error
37
+ # this is with IE7. I think the problem could be with the highlighting of the
38
+ # button from the separate process.
39
+ browser.link(:text, 'New Window').click_no_wait
40
+ IE.attach_timeout = 6.0
41
+ ie_new = IE.attach(:title, 'Pass Page')
42
+ assert(ie_new.text.include?('PASS'))
43
+ ie_new.close
44
+ end
45
+
46
+ def test_click_no_wait_works_in_a_container
47
+ browser.p(:index, 1).link(:text, 'New Window').click_no_wait
48
+ IE.attach_timeout = 6.0
49
+ ie_new = IE.attach(:title, 'Pass Page')
50
+ assert(ie_new.text.include?('PASS'))
51
+ ie_new.close
52
+ end
53
+
54
+ def test_attach_to_slow_window_works_with_delay
55
+ browser.span(:text, 'New Window Slowly').click
56
+ IE.attach_timeout = 4.0
57
+ sleep 1.0
58
+ ie_new = IE.attach(:title, 'Test page for buttons')
59
+ assert(ie_new.text.include?('Blank page to fill in the frames'))
60
+ ie_new.close
61
+ end
62
+
63
+ def test_attach_to_slow_window_works_without_waiting
64
+ browser.span(:text, 'New Window Slowly').click
65
+ IE.attach_timeout = 3.0
66
+ ie_new = IE.attach(:title, 'Test page for buttons')
67
+ assert(ie_new.text.include?('Blank page to fill in the frames'))
68
+ ie_new.close
69
+ end
70
+
71
+ def test_attach_timesout_when_window_takes_too_long
72
+ IE.attach_timeout = 0.2
73
+ browser.text_field(:name, 'delay').set('2')
74
+ browser.span(:text, 'New Window Slowly').click
75
+ assert_raise(Watir::Exception::NoMatchingWindowFoundException) do
76
+ IE.attach(:title, 'Test page for buttons')
77
+ end
78
+ sleep 2.0 # clean up
79
+ IE.attach_timeout = 6.0
80
+ IE.attach(:title, 'Test page for buttons').close
81
+ end
82
+
83
+ end