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
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.6.6.rc1
@@ -1,7 +1,7 @@
1
- #!/usr/bin/env ruby
2
- $root = File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))
3
- $watir_lib = File.join($root, 'watir', 'lib')
4
- $watir_common_lib = File.join($root, 'commonwatir', 'lib')
5
- $firewatir_lib = File.join($root, 'firewatir', 'lib')
6
- $libs = "-I #{$watir_lib} -I #{$watir_common_lib} -I #{$firewatir_lib}"
1
+ #!/usr/bin/env ruby
2
+ $root = File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))
3
+ $watir_lib = File.join($root, 'watir', 'lib')
4
+ $watir_common_lib = File.join($root, 'commonwatir', 'lib')
5
+ $firewatir_lib = File.join($root, 'firewatir', 'lib')
6
+ $libs = "-I #{$watir_lib} -I #{$watir_common_lib} -I #{$firewatir_lib}"
7
7
  exec "irb.bat #{$libs} -r rubygems -r irb/completion -r watir/irb-history -r watir --simple-prompt --readline"
@@ -1,3 +1,3 @@
1
- =begin rdoc
2
- :include:../CHANGES
3
- =end
1
+ =begin rdoc
2
+ :include:../CHANGES
3
+ =end
@@ -1,38 +1,38 @@
1
- =begin rdoc
2
-
3
- License
4
- ---------------------------------------------------------------------------
5
- Copyright (c) 2004 - 2005, Paul Rogers and Bret Pettichord
6
- Copyright (c) 2006 - 2008, Bret Pettichord
7
- All rights reserved.
8
-
9
- Redistribution and use in source and binary forms, with or without
10
- modification, are permitted provided that the following conditions are met:
11
-
12
- 1. Redistributions of source code must retain the above copyright notice,
13
- this list of conditions and the following disclaimer.
14
-
15
- 2. Redistributions in binary form must reproduce the above copyright
16
- notice, this list of conditions and the following disclaimer in the
17
- documentation and/or other materials provided with the distribution.
18
-
19
- 3. Neither the names Paul Rogers, Bret Pettichord nor the names of contributors to
20
- this software may be used to endorse or promote products derived from this
21
- software without specific prior written permission.
22
-
23
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
24
- IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
25
- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26
- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
27
- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
28
- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
29
- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
30
- OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
31
- WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
32
- OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
33
- ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
- --------------------------------------------------------------------------
35
- (based on BSD Open Source License)
36
-
37
- =end
38
-
1
+ =begin rdoc
2
+
3
+ License
4
+ ---------------------------------------------------------------------------
5
+ Copyright (c) 2004 - 2005, Paul Rogers and Bret Pettichord
6
+ Copyright (c) 2006 - 2008, Bret Pettichord
7
+ All rights reserved.
8
+
9
+ Redistribution and use in source and binary forms, with or without
10
+ modification, are permitted provided that the following conditions are met:
11
+
12
+ 1. Redistributions of source code must retain the above copyright notice,
13
+ this list of conditions and the following disclaimer.
14
+
15
+ 2. Redistributions in binary form must reproduce the above copyright
16
+ notice, this list of conditions and the following disclaimer in the
17
+ documentation and/or other materials provided with the distribution.
18
+
19
+ 3. Neither the names Paul Rogers, Bret Pettichord nor the names of contributors to
20
+ this software may be used to endorse or promote products derived from this
21
+ software without specific prior written permission.
22
+
23
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
24
+ IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
25
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
27
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
28
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
29
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
30
+ OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
31
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
32
+ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
33
+ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
+ --------------------------------------------------------------------------
35
+ (based on BSD Open Source License)
36
+
37
+ =end
38
+
@@ -1,140 +1,140 @@
1
- =begin rdoc
2
-
3
- This is Watir - Web Application Testing In Ruby http://wtr.rubyforge.org
4
-
5
- Install Ruby http://ruby-lang.org
6
- First you need to install Ruby using the one-click installer for Windows. We
7
- recommend Ruby 1.8.6. (Even if you are using modal dialogs.)
8
-
9
- Install Watir
10
- Watir is packaged as a gem, a Ruby library that can be installed over the
11
- internet.
12
-
13
- Watir 1.5 was released in September 2007. To install it, type this at a
14
- command prompt:
15
- gem install watir
16
-
17
- Watir 1.4 was released in August 2005. If you are upgrading from it, see
18
- these notes: http://wiki.openqa.org/display/WTR/Development+Builds
19
-
20
- How To Use:
21
- This only works on Windows.
22
- Requires Internet Explorer 5.5 or newer.
23
- Check out the mail lists and the documentation for the workarounds.
24
-
25
- User Guide: http://wiki.openqa.org/display/WTR/User+Guide
26
-
27
- Unit Tests:
28
- Run the unittests in a cmd shell. Go to the dir where you installed it and then type 'ruby unittests/core_tests.rb'.
29
- See the user guide if you are having problems with security blocking.
30
-
31
- Typical Usage
32
- # include the controller
33
- require 'watir'
34
- # create an instance of the controller
35
- ie = Watir::IE.new
36
- # go to the page you want to test
37
- ie.goto('http://myserver/mypage')
38
- # to enter text into a text field - assuming the field is named 'username'
39
- ie.text_field(:name, 'username').set('Paul')
40
- # if there was a text field that had an id of 'company_ID', you could set it to 'Ruby Co':
41
- ie.text_field(:id ,'company_ID').set('Ruby Co')
42
- # to click a button that has a caption of 'Cancel'
43
- ie.button(:value, 'Cancel').click
44
-
45
- Identifying something using two or more identifying characteristics
46
- # Html objects can also be identified via a combination of two of the above methods,
47
- # for example to click a span with a class name of 'Label', and whose text is 'Add new', one could say
48
- ie.span(:class =>'Label', :text => 'Add new').click
49
- # Or to find one object within another (for example the first text_field within a div of class
50
- # 'PasswordInput', where your password equals 'MyPassword'), one could say
51
- ie.div(:class, 'PasswordInput').text_field(:index, 1).set('MyPassword')
52
-
53
- The ways that are available to identify an html object depend upon the object type, but include
54
- :id used for an object that has an ID attribute.*
55
- :name used for an object that has a name attribute.*
56
- :value value of text fields, captions of buttons.
57
- :index finds the nth object of the specified type - eg button(:index , 2) finds the second button. This is 1 based. <br>
58
- :class used for an object that has a class attribute.
59
- :text used for links and other objects that contain text.
60
- :xpath finds the item using xpath query
61
-
62
- * :id and :name are the quickest of these to process, and so should be used when possible to speed up scripts.
63
-
64
- These 2 web sites provide info on Internet Explorer and on the DOM as implemented by Internet Explorer
65
- http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/webbrowser/webbrowser.asp
66
- http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/overview/overview.asp
67
-
68
- Command line options:
69
-
70
- -b (background) Run Internet Explorer invisible
71
- -f (fast) Run tests very fast
72
-
73
- Note that if you also use test/unit, you will need to require 'watir' first to avoid conflicts
74
- with its command line switches.
75
-
76
- Javascript Pop Up Support
77
- Watir now optionally installs AutoIt - http://www.autoitscript.com/
78
- This is the prefered method for dealing wth pop ups, file requesters etc. Support for Winclickers will be removed.
79
-
80
- Contacts:
81
- Bret Pettichord (bret@pettichord.com)
82
- Charley Baker (charley.baker@gmail.com)
83
- Paul Rogers (paul.rogers@shaw.ca)
84
- The mailing list: http://groups.google.com/group/watir-general
85
-
86
- Contributors:
87
- Bret Pettichord
88
- Paul Rogers
89
- Jonathan Kohl
90
- Chris Morris
91
- Karlin Fox
92
- Lorenzo Jorquera
93
- Atilla Ozgur
94
- Justin McCarthy
95
- Chris McMahon
96
- Elisabeth Hendrickson
97
- Michael Kelly
98
- Peter Chau
99
- Danny Faught
100
- Andy Sipe
101
- John Lloyd-Jones
102
- Chris Hedges
103
- Park Heesob
104
- Shashank Date
105
- Jared Luxenberg
106
- Alexey Verkhovsky
107
- Tuyet Cong-Ton-Nu
108
- Jeff Wood
109
- Angrez Singh
110
- Abhishek Goliya
111
- Yaxin Wang
112
- Michael Bolton
113
- Paul Carvalho
114
- Konstantin Sobolev
115
- David Schmidt
116
- Dara Lillis
117
- Charley Baker
118
- Prema Arya
119
- Xavier Noria
120
- Jeff Fry
121
- Zeljko Filipin
122
- Paul Taylor - Bug fix 194
123
- Vincent Xu - Chinese input support
124
- Tomislav Car - Filefield fix (210)
125
- Michael Hwee & Aidy Lewis - Multiple attribute support for FireWatir (233)
126
- Alan Baird - Fix for visible? method (253)
127
- Jari Bakken - Regexp support for includes? and selected? methods for select lists (261)
128
-
129
- Acknowledgements:
130
- Chris Morris
131
- Brian Marick
132
- Jonathan Kohl
133
- Penny Tonita
134
- Janet Gregory
135
- Andy Tinkham
136
- Jacinda Scott (logo creator)
137
-
138
- Thanks for your ideas and support!
139
-
140
- =end
1
+ =begin rdoc
2
+
3
+ This is Watir - Web Application Testing In Ruby http://wtr.rubyforge.org
4
+
5
+ Install Ruby http://ruby-lang.org
6
+ First you need to install Ruby using the one-click installer for Windows. We
7
+ recommend Ruby 1.8.6. (Even if you are using modal dialogs.)
8
+
9
+ Install Watir
10
+ Watir is packaged as a gem, a Ruby library that can be installed over the
11
+ internet.
12
+
13
+ Watir 1.5 was released in September 2007. To install it, type this at a
14
+ command prompt:
15
+ gem install watir
16
+
17
+ Watir 1.4 was released in August 2005. If you are upgrading from it, see
18
+ these notes: http://wiki.openqa.org/display/WTR/Development+Builds
19
+
20
+ How To Use:
21
+ This only works on Windows.
22
+ Requires Internet Explorer 5.5 or newer.
23
+ Check out the mail lists and the documentation for the workarounds.
24
+
25
+ User Guide: http://wiki.openqa.org/display/WTR/User+Guide
26
+
27
+ Unit Tests:
28
+ Run the unittests in a cmd shell. Go to the dir where you installed it and then type 'ruby unittests/core_tests.rb'.
29
+ See the user guide if you are having problems with security blocking.
30
+
31
+ Typical Usage
32
+ # include the controller
33
+ require 'watir'
34
+ # create an instance of the controller
35
+ ie = Watir::IE.new
36
+ # go to the page you want to test
37
+ ie.goto('http://myserver/mypage')
38
+ # to enter text into a text field - assuming the field is named 'username'
39
+ ie.text_field(:name, 'username').set('Paul')
40
+ # if there was a text field that had an id of 'company_ID', you could set it to 'Ruby Co':
41
+ ie.text_field(:id ,'company_ID').set('Ruby Co')
42
+ # to click a button that has a caption of 'Cancel'
43
+ ie.button(:value, 'Cancel').click
44
+
45
+ Identifying something using two or more identifying characteristics
46
+ # Html objects can also be identified via a combination of two of the above methods,
47
+ # for example to click a span with a class name of 'Label', and whose text is 'Add new', one could say
48
+ ie.span(:class =>'Label', :text => 'Add new').click
49
+ # Or to find one object within another (for example the first text_field within a div of class
50
+ # 'PasswordInput', where your password equals 'MyPassword'), one could say
51
+ ie.div(:class, 'PasswordInput').text_field(:index, 1).set('MyPassword')
52
+
53
+ The ways that are available to identify an html object depend upon the object type, but include
54
+ :id used for an object that has an ID attribute.*
55
+ :name used for an object that has a name attribute.*
56
+ :value value of text fields, captions of buttons.
57
+ :index finds the nth object of the specified type - eg button(:index , 2) finds the second button. This is 1 based. <br>
58
+ :class used for an object that has a class attribute.
59
+ :text used for links and other objects that contain text.
60
+ :xpath finds the item using xpath query
61
+
62
+ * :id and :name are the quickest of these to process, and so should be used when possible to speed up scripts.
63
+
64
+ These 2 web sites provide info on Internet Explorer and on the DOM as implemented by Internet Explorer
65
+ http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/webbrowser/webbrowser.asp
66
+ http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/overview/overview.asp
67
+
68
+ Command line options:
69
+
70
+ -b (background) Run Internet Explorer invisible
71
+ -f (fast) Run tests very fast
72
+
73
+ Note that if you also use test/unit, you will need to require 'watir' first to avoid conflicts
74
+ with its command line switches.
75
+
76
+ Javascript Pop Up Support
77
+ Watir now optionally installs AutoIt - http://www.autoitscript.com/
78
+ This is the prefered method for dealing wth pop ups, file requesters etc. Support for Winclickers will be removed.
79
+
80
+ Contacts:
81
+ Bret Pettichord (bret@pettichord.com)
82
+ Charley Baker (charley.baker@gmail.com)
83
+ Paul Rogers (paul.rogers@shaw.ca)
84
+ The mailing list: http://groups.google.com/group/watir-general
85
+
86
+ Contributors:
87
+ Bret Pettichord
88
+ Paul Rogers
89
+ Jonathan Kohl
90
+ Chris Morris
91
+ Karlin Fox
92
+ Lorenzo Jorquera
93
+ Atilla Ozgur
94
+ Justin McCarthy
95
+ Chris McMahon
96
+ Elisabeth Hendrickson
97
+ Michael Kelly
98
+ Peter Chau
99
+ Danny Faught
100
+ Andy Sipe
101
+ John Lloyd-Jones
102
+ Chris Hedges
103
+ Park Heesob
104
+ Shashank Date
105
+ Jared Luxenberg
106
+ Alexey Verkhovsky
107
+ Tuyet Cong-Ton-Nu
108
+ Jeff Wood
109
+ Angrez Singh
110
+ Abhishek Goliya
111
+ Yaxin Wang
112
+ Michael Bolton
113
+ Paul Carvalho
114
+ Konstantin Sobolev
115
+ David Schmidt
116
+ Dara Lillis
117
+ Charley Baker
118
+ Prema Arya
119
+ Xavier Noria
120
+ Jeff Fry
121
+ Zeljko Filipin
122
+ Paul Taylor - Bug fix 194
123
+ Vincent Xu - Chinese input support
124
+ Tomislav Car - Filefield fix (210)
125
+ Michael Hwee & Aidy Lewis - Multiple attribute support for FireWatir (233)
126
+ Alan Baird - Fix for visible? method (253)
127
+ Jari Bakken - Regexp support for includes? and selected? methods for select lists (261)
128
+
129
+ Acknowledgements:
130
+ Chris Morris
131
+ Brian Marick
132
+ Jonathan Kohl
133
+ Penny Tonita
134
+ Janet Gregory
135
+ Andy Tinkham
136
+ Jacinda Scott (logo creator)
137
+
138
+ Thanks for your ideas and support!
139
+
140
+ =end
@@ -1,49 +1,49 @@
1
- require 'watir/win32ole'
2
- require 'watir/ie' # for Watir.autoit
3
-
4
- class WindowHelper
5
- @@ie_window_name = "Windows Internet Explorer"
6
- def initialize()
7
- @autoit = Watir.autoit
8
- end
9
-
10
- def push_alert_button
11
- @autoit.WinWait @@ie_window_name, ""
12
- @autoit.Send "{ENTER}"
13
- end
14
-
15
- def push_confirm_button_ok
16
- @autoit.WinWait @@ie_window_name, ""
17
- @autoit.Send "{ENTER}"
18
- end
19
-
20
- def push_confirm_button_cancel
21
- @autoit.WinWait @@ie_window_name, ""
22
- @autoit.Send "{ESCAPE}"
23
- end
24
-
25
- def push_security_alert_yes
26
- @autoit.WinWait "Security Alert", ""
27
- @autoit.Send "{TAB}"
28
- @autoit.Send "{TAB}"
29
- @autoit.Send "{SPACE}"
30
- end
31
-
32
- def logon(title,name = 'john doe',password = 'john doe')
33
- @autoit.WinWait title, ""
34
- @autoit.Send name
35
- @autoit.Send "{TAB}"
36
- @autoit.Send password
37
- @autoit.Send "{ENTER}"
38
- end
39
-
40
- def WindowHelper.check_autoit_installed
41
- begin
42
- Watir.autoit
43
- rescue
44
- raise Watir::Exception::WatirException, "The AutoIt dll must be correctly registered for this feature to work properly"
45
- end
46
- end
47
- end
48
-
49
-
1
+ require 'watir/win32ole'
2
+ require 'watir/ie' # for Watir.autoit
3
+
4
+ class WindowHelper
5
+ @@ie_window_name = "Windows Internet Explorer"
6
+ def initialize()
7
+ @autoit = Watir.autoit
8
+ end
9
+
10
+ def push_alert_button
11
+ @autoit.WinWait @@ie_window_name, ""
12
+ @autoit.Send "{ENTER}"
13
+ end
14
+
15
+ def push_confirm_button_ok
16
+ @autoit.WinWait @@ie_window_name, ""
17
+ @autoit.Send "{ENTER}"
18
+ end
19
+
20
+ def push_confirm_button_cancel
21
+ @autoit.WinWait @@ie_window_name, ""
22
+ @autoit.Send "{ESCAPE}"
23
+ end
24
+
25
+ def push_security_alert_yes
26
+ @autoit.WinWait "Security Alert", ""
27
+ @autoit.Send "{TAB}"
28
+ @autoit.Send "{TAB}"
29
+ @autoit.Send "{SPACE}"
30
+ end
31
+
32
+ def logon(title,name = 'john doe',password = 'john doe')
33
+ @autoit.WinWait title, ""
34
+ @autoit.Send name
35
+ @autoit.Send "{TAB}"
36
+ @autoit.Send password
37
+ @autoit.Send "{ENTER}"
38
+ end
39
+
40
+ def WindowHelper.check_autoit_installed
41
+ begin
42
+ Watir.autoit
43
+ rescue
44
+ raise Watir::Exception::WatirException, "The AutoIt dll must be correctly registered for this feature to work properly"
45
+ end
46
+ end
47
+ end
48
+
49
+