watir-classic 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +721 -0
- data/LICENSE +34 -0
- data/README.rdoc +78 -0
- data/VERSION +1 -0
- data/bin/watir-console +5 -0
- data/lib/watir-classic.rb +14 -0
- data/lib/watir-classic/IEDialog/Release/IEDialog.dll +0 -0
- data/lib/watir-classic/assertions.rb +44 -0
- data/lib/watir-classic/browser.rb +149 -0
- data/lib/watir-classic/browsers.rb +7 -0
- data/lib/watir-classic/close_all.rb +31 -0
- data/lib/watir-classic/container.rb +110 -0
- data/lib/watir-classic/contrib/enabled_popup.rb +21 -0
- data/lib/watir-classic/contrib/ie-new-process.rb +27 -0
- data/lib/watir-classic/contrib/page_checker.rb +29 -0
- data/lib/watir-classic/cookies.rb +80 -0
- data/lib/watir-classic/core.rb +43 -0
- data/lib/watir-classic/dialogs/file_field.rb +34 -0
- data/lib/watir-classic/dialogs/javascript.rb +43 -0
- data/lib/watir-classic/drag_and_drop_helper.rb +68 -0
- data/lib/watir-classic/element.rb +438 -0
- data/lib/watir-classic/element_collection.rb +109 -0
- data/lib/watir-classic/element_extensions.rb +69 -0
- data/lib/watir-classic/exceptions.rb +50 -0
- data/lib/watir-classic/form.rb +96 -0
- data/lib/watir-classic/frame.rb +47 -0
- data/lib/watir-classic/ie-class.rb +767 -0
- data/lib/watir-classic/ie-process.rb +47 -0
- data/lib/watir-classic/ie.rb +20 -0
- data/lib/watir-classic/image.rb +111 -0
- data/lib/watir-classic/input_elements.rb +480 -0
- data/lib/watir-classic/irb-history.rb +31 -0
- data/lib/watir-classic/link.rb +46 -0
- data/lib/watir-classic/locator.rb +243 -0
- data/lib/watir-classic/logger.rb +19 -0
- data/lib/watir-classic/matches.rb +23 -0
- data/lib/watir-classic/modal_dialog.rb +72 -0
- data/lib/watir-classic/module.rb +12 -0
- data/lib/watir-classic/non_control_elements.rb +114 -0
- data/lib/watir-classic/options.rb +56 -0
- data/lib/watir-classic/page-container.rb +114 -0
- data/lib/watir-classic/process.rb +20 -0
- data/lib/watir-classic/screen_capture.rb +115 -0
- data/lib/watir-classic/supported_elements.rb +172 -0
- data/lib/watir-classic/table.rb +224 -0
- data/lib/watir-classic/testcase.rb +97 -0
- data/lib/watir-classic/util.rb +35 -0
- data/lib/watir-classic/version.rb +4 -0
- data/lib/watir-classic/wait.rb +41 -0
- data/lib/watir-classic/wait_helper.rb +12 -0
- data/lib/watir-classic/waiter.rb +98 -0
- data/lib/watir-classic/win32.rb +40 -0
- data/lib/watir-classic/win32ole.rb +16 -0
- data/lib/watir-classic/win32ole/1.8.7/win32ole.so +0 -0
- data/lib/watir-classic/win32ole/1.9.3/win32ole.so +0 -0
- data/lib/watir-classic/window.rb +68 -0
- data/lib/watir-classic/xpath_locator.rb +52 -0
- data/rakefile.rb +54 -0
- data/unittests/all_tests.rb +10 -0
- data/unittests/buttons_xpath_test.rb +68 -0
- data/unittests/checkbox_test.rb +163 -0
- data/unittests/checkbox_xpath_test.rb +106 -0
- data/unittests/click_no_wait_test.rb +23 -0
- data/unittests/close_all_test.rb +17 -0
- data/unittests/core_tests.rb +17 -0
- data/unittests/css_selector_test.rb +44 -0
- data/unittests/css_test.rb +38 -0
- data/unittests/dialog_test.rb +64 -0
- data/unittests/div2_xpath_test.rb +21 -0
- data/unittests/div_test.rb +170 -0
- data/unittests/div_xpath_test.rb +95 -0
- data/unittests/document_standards.rb +63 -0
- data/unittests/element_collection_indexes_test.rb +57 -0
- data/unittests/element_collections_test.rb +100 -0
- data/unittests/element_test.rb +47 -0
- data/unittests/errorchecker_test.rb +31 -0
- data/unittests/filefield_test.rb +43 -0
- data/unittests/filefield_xpath_test.rb +35 -0
- data/unittests/form_test.rb +282 -0
- data/unittests/form_xpath_test.rb +254 -0
- data/unittests/frame_test.rb +165 -0
- data/unittests/google_form_test.rb +15 -0
- data/unittests/html/JavascriptClick.html +39 -0
- data/unittests/html/blankpage.html +11 -0
- data/unittests/html/buttons1.html +40 -0
- data/unittests/html/checkboxes1.html +89 -0
- data/unittests/html/click_no_wait.html +14 -0
- data/unittests/html/complex_table.html +35 -0
- data/unittests/html/cssTest.html +42 -0
- data/unittests/html/depot_store.html +59 -0
- data/unittests/html/div.html +92 -0
- data/unittests/html/div_xml.html +21 -0
- data/unittests/html/fileupload.html +44 -0
- data/unittests/html/formTest1.html +38 -0
- data/unittests/html/forms2.html +44 -0
- data/unittests/html/forms3.html +131 -0
- data/unittests/html/forms4.html +26 -0
- data/unittests/html/frame_buttons.html +4 -0
- data/unittests/html/frame_links.html +4 -0
- data/unittests/html/frame_multi.html +5 -0
- data/unittests/html/google_india.html +119 -0
- data/unittests/html/ie7_document_standards.html +9 -0
- data/unittests/html/ie8_document_standards.html +9 -0
- data/unittests/html/ie9_document_standards.html +9 -0
- data/unittests/html/iframe.html +3 -0
- data/unittests/html/iframeTest.html +17 -0
- data/unittests/html/iframeTest1.html +7 -0
- data/unittests/html/iframeTest2.html +5 -0
- data/unittests/html/images/1.gif +0 -0
- data/unittests/html/images/2.GIF +0 -0
- data/unittests/html/images/3.GIF +0 -0
- data/unittests/html/images/button.jpg +0 -0
- data/unittests/html/images/circle.jpg +0 -0
- data/unittests/html/images/map.GIF +0 -0
- data/unittests/html/images/map2.gif +0 -0
- data/unittests/html/images/minus.GIF +0 -0
- data/unittests/html/images/originaltriangle.jpg +0 -0
- data/unittests/html/images/plus.gif +0 -0
- data/unittests/html/images/square.jpg +0 -0
- data/unittests/html/images/triangle.jpg +0 -0
- data/unittests/html/images1.html +65 -0
- data/unittests/html/javascriptevents.html +33 -0
- data/unittests/html/link_pass.html +11 -0
- data/unittests/html/links1.html +37 -0
- data/unittests/html/links2.html +11 -0
- data/unittests/html/links_multi.html +12 -0
- data/unittests/html/list_matters.html +720 -0
- data/unittests/html/lists.html +18 -0
- data/unittests/html/map_test.html +30 -0
- data/unittests/html/modal_dialog.html +10 -0
- data/unittests/html/modal_dialog_launcher.html +12 -0
- data/unittests/html/multiple_specifiers.html +64 -0
- data/unittests/html/nestedFrames.html +6 -0
- data/unittests/html/new_browser.html +17 -0
- data/unittests/html/pass.html +13 -0
- data/unittests/html/popups1.html +59 -0
- data/unittests/html/pre.html +29 -0
- data/unittests/html/quirks_document_standards.html +8 -0
- data/unittests/html/radioButtons1.html +71 -0
- data/unittests/html/select_tealeaf.html +54 -0
- data/unittests/html/selectboxes1.html +52 -0
- data/unittests/html/simple_table.html +25 -0
- data/unittests/html/simple_table_buttons.html +104 -0
- data/unittests/html/simple_table_columns.html +75 -0
- data/unittests/html/table1.html +179 -0
- data/unittests/html/tableCell_using_xpath.html +19 -0
- data/unittests/html/table_and_tablerow_to_a.html +174 -0
- data/unittests/html/textarea.html +30 -0
- data/unittests/html/textfields1.html +100 -0
- data/unittests/html/textsearch.html +44 -0
- data/unittests/html/wallofcheckboxes.html +1003 -0
- data/unittests/html/xpath_nbsp.html +11 -0
- data/unittests/html/zeroindex.html +11 -0
- data/unittests/ie_exists_test.rb +16 -0
- data/unittests/ie_mock.rb +94 -0
- data/unittests/ie_test.rb +54 -0
- data/unittests/images_test.rb +156 -0
- data/unittests/images_xpath_test.rb +90 -0
- data/unittests/index_specifier_test.rb +31 -0
- data/unittests/js_events_test.rb +31 -0
- data/unittests/links_multi_test.rb +34 -0
- data/unittests/links_test.rb +131 -0
- data/unittests/links_xpath_test.rb +38 -0
- data/unittests/lists_test.rb +23 -0
- data/unittests/map_test.rb +98 -0
- data/unittests/minmax_test.rb +37 -0
- data/unittests/navigate_test.rb +38 -0
- data/unittests/nbsp_xpath_test.rb +16 -0
- data/unittests/no_wait_test.rb +28 -0
- data/unittests/non_core_tests.rb +12 -0
- data/unittests/other/all_tests_concurrent.rb +57 -0
- data/unittests/other/navigate_exception_test.rb +24 -0
- data/unittests/other/rexml_unit_test.rb +27 -0
- data/unittests/other/screen_capture_test.rb +53 -0
- data/unittests/other/testcase_method_order_test.rb +36 -0
- data/unittests/other/testcase_verify_test.rb +25 -0
- data/unittests/other/wait_until_test.rb +102 -0
- data/unittests/pagecontainstext_test.rb +69 -0
- data/unittests/parent_child_test.rb +27 -0
- data/unittests/perf_test.rb +20 -0
- data/unittests/pre_test.rb +49 -0
- data/unittests/radios_test.rb +181 -0
- data/unittests/radios_xpath_test.rb +100 -0
- data/unittests/security_setting_test.rb +24 -0
- data/unittests/selectbox_test.rb +144 -0
- data/unittests/selectbox_xpath_test.rb +102 -0
- data/unittests/setup.rb +69 -0
- data/unittests/speed_settings_test.rb +67 -0
- data/unittests/table_cell_using_xpath_test.rb +34 -0
- data/unittests/table_test.rb +296 -0
- data/unittests/table_xpath_test.rb +109 -0
- data/unittests/test_tests.rb +9 -0
- data/unittests/textarea_test.rb +92 -0
- data/unittests/textarea_xpath_test.rb +77 -0
- data/unittests/textfield_for_ch_char_test.rb +32 -0
- data/unittests/textfields_test.rb +184 -0
- data/unittests/textfields_xpath_test.rb +110 -0
- data/unittests/version_test.rb +15 -0
- data/unittests/win32ole_so_test.rb +35 -0
- data/unittests/window_tests.rb +10 -0
- data/unittests/windows/attach_to_existing_window_test.rb +52 -0
- data/unittests/windows/attach_to_new_window_test.rb +74 -0
- data/unittests/windows/close_window_test.rb +20 -0
- data/unittests/windows/frame_links_test.rb +23 -0
- data/unittests/windows/ie-each_test.rb +46 -0
- data/unittests/windows/modal_dialog_test.rb +95 -0
- data/unittests/windows/new_process_test.rb +24 -0
- data/unittests/windows/new_test.rb +58 -0
- data/unittests/windows/open_close_test.rb +19 -0
- data/unittests/windows/send_keys_test.rb +26 -0
- data/unittests/xpath_tests.rb +11 -0
- data/watir-rdoc.rb +7 -0
- metadata +370 -0
@@ -0,0 +1,24 @@
|
|
1
|
+
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', '..', 'lib')
|
2
|
+
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', '..', '..', 'commonwatir', 'lib')
|
3
|
+
require 'test/unit'
|
4
|
+
require 'watir-classic/ie'
|
5
|
+
|
6
|
+
class TC_NewProcess < Test::Unit::TestCase
|
7
|
+
def test_new_process_single_window
|
8
|
+
assert_nothing_raised {
|
9
|
+
ie = Watir::IE.new_process
|
10
|
+
ie.goto 'www.yahoo.com'
|
11
|
+
ie.close
|
12
|
+
}
|
13
|
+
end
|
14
|
+
def test_new_process_multiple_windows
|
15
|
+
assert_nothing_raised {
|
16
|
+
ie1 = Watir::IE.new_process
|
17
|
+
ie1.goto 'www.yahoo.com'
|
18
|
+
ie2 = Watir::IE.new_process
|
19
|
+
ie2.goto 'www.google.com'
|
20
|
+
ie1.close
|
21
|
+
ie2.close
|
22
|
+
}
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', '..') unless $SETUP_LOADED
|
2
|
+
|
3
|
+
require 'unittests/setup'
|
4
|
+
require 'watir-classic/contrib/ie-new-process'
|
5
|
+
require 'watir-classic/process'
|
6
|
+
|
7
|
+
class TC_New < Test::Unit::TestCase
|
8
|
+
|
9
|
+
def setup
|
10
|
+
@background_iexplore_processes = Watir::IE.process_count
|
11
|
+
if @background_iexplore_process == 0
|
12
|
+
@background = Watir::IE.new
|
13
|
+
assert_equal 1, Watir::IE.process_count
|
14
|
+
@background_iexplore_process = 1
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def teardown
|
19
|
+
@background.close if @background
|
20
|
+
@new.close if @new
|
21
|
+
sleep 1.0 # give it time to close
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_new_window_does_not_create_new_process
|
25
|
+
@new = Watir::IE.new_window
|
26
|
+
assert_equal @background_iexplore_processes, Watir::IE.process_count
|
27
|
+
end
|
28
|
+
|
29
|
+
def test_new_does_not_create_new_process
|
30
|
+
@new = Watir::IE.new
|
31
|
+
assert_equal @background_iexplore_processes, Watir::IE.process_count
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_start_window_with_no_args_works_like_new_window
|
35
|
+
@new = Watir::IE.start_window
|
36
|
+
assert_equal @background_iexplore_processes, Watir::IE.process_count
|
37
|
+
end
|
38
|
+
|
39
|
+
def test_start_window_with_url_also_goes_to_that_page
|
40
|
+
@new = Watir::IE.start_window 'http://wtr.rubyforge.org'
|
41
|
+
assert_equal @background_iexplore_processes, Watir::IE.process_count
|
42
|
+
assert_equal 'http://wtr.rubyforge.org/', @new.url
|
43
|
+
end
|
44
|
+
|
45
|
+
tag_method :test_new_process_creates_a_new_process, :fails_on_ie
|
46
|
+
def test_new_process_creates_a_new_process
|
47
|
+
@new = Watir::IE.new_process
|
48
|
+
assert_equal @background_iexplore_processes + 1, Watir::IE.process_count
|
49
|
+
end
|
50
|
+
|
51
|
+
tag_method :test_start_process_with_arg_creates_a_new_process_and_goes_to_that_page, :fails_on_ie
|
52
|
+
def test_start_process_with_arg_creates_a_new_process_and_goes_to_that_page
|
53
|
+
@new = Watir::IE.start_process 'http://wtr.rubyforge.org'
|
54
|
+
assert_equal @background_iexplore_processes + 1, Watir::IE.process_count
|
55
|
+
assert_equal 'http://wtr.rubyforge.org/', @new.url
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# rapidly open and close IE windows
|
2
|
+
|
3
|
+
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', '..', 'lib')
|
4
|
+
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', '..', '..', 'commonwatir', 'lib')
|
5
|
+
require 'test/unit'
|
6
|
+
require 'watir-classic/ie'
|
7
|
+
require 'watir-classic/contrib/ie-new-process'
|
8
|
+
|
9
|
+
class ZZ_OpenClose < Test::Unit::TestCase
|
10
|
+
20.times do | i |
|
11
|
+
define_method "test_#{i}" do
|
12
|
+
sleep 0.05
|
13
|
+
sleep i * 0.01
|
14
|
+
ie = Watir::IE.new_process
|
15
|
+
ie.goto 'http://blogs.dovetailsoftware.com/blogs/gsherman/default.aspx'
|
16
|
+
ie.close
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# feature tests for IE#send_keys
|
2
|
+
|
3
|
+
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', '..') unless $SETUP_LOADED
|
4
|
+
require 'unittests/setup'
|
5
|
+
|
6
|
+
class TC_SendKeys < Test::Unit::TestCase
|
7
|
+
def setup
|
8
|
+
goto_page "textfields1.html"
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_tabbing
|
12
|
+
browser.text_field(:name, 'text1').focus
|
13
|
+
browser.send_keys('{tab}')
|
14
|
+
browser.send_keys('Scooby')
|
15
|
+
assert('Scooby', browser.text_field(:name, 'beforetest').value)
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_enter
|
19
|
+
browser.text_field(:name, 'text1').focus
|
20
|
+
browser.send_keys('{tab}{tab}{tab}{tab}{tab}')
|
21
|
+
browser.send_keys('Dooby{enter}')
|
22
|
+
sleep 0.2
|
23
|
+
assert(browser.text.include?('PASS'))
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
data/watir-rdoc.rb
ADDED
metadata
ADDED
@@ -0,0 +1,370 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: watir-classic
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.0.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Bret Pettichord
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-04-23 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: win32-process
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 0.5.5
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 0.5.5
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: windows-pr
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: 0.6.6
|
38
|
+
type: :runtime
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: 0.6.6
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: nokogiri
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: ffi
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ~>
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '1.0'
|
70
|
+
type: :runtime
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '1.0'
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: rautomation
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ~>
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: 0.7.2
|
86
|
+
type: :runtime
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ~>
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: 0.7.2
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: user-choices
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ! '>='
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
102
|
+
type: :runtime
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ! '>='
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
description: ! " WATIR is \"Web Application Testing in Ruby\". Watir (pronounced
|
111
|
+
water) is a free,\n open-source functional testing tool for automating browser-based
|
112
|
+
tests of web applications.\n It works with applications written in any language.\n
|
113
|
+
\ Watir drives the Internet Explorer browser the same way an end user would.\n
|
114
|
+
\ It clicks links, fills in forms, presses buttons.\n Watir also checks results,
|
115
|
+
such as whether expected text appears on the\n page, or whether a control is
|
116
|
+
enabled.\n Watir can test web applications written in any language.\n Watir
|
117
|
+
is a Ruby library that works with Internet Explorer on Windows.\n"
|
118
|
+
email: watir-general@groups.google.com
|
119
|
+
executables:
|
120
|
+
- watir-console
|
121
|
+
extensions: []
|
122
|
+
extra_rdoc_files:
|
123
|
+
- README.rdoc
|
124
|
+
files:
|
125
|
+
- CHANGES
|
126
|
+
- rakefile.rb
|
127
|
+
- VERSION
|
128
|
+
- README.rdoc
|
129
|
+
- watir-rdoc.rb
|
130
|
+
- LICENSE
|
131
|
+
- lib/watir-classic.rb
|
132
|
+
- lib/watir-classic/assertions.rb
|
133
|
+
- lib/watir-classic/browser.rb
|
134
|
+
- lib/watir-classic/browsers.rb
|
135
|
+
- lib/watir-classic/close_all.rb
|
136
|
+
- lib/watir-classic/container.rb
|
137
|
+
- lib/watir-classic/cookies.rb
|
138
|
+
- lib/watir-classic/core.rb
|
139
|
+
- lib/watir-classic/drag_and_drop_helper.rb
|
140
|
+
- lib/watir-classic/element.rb
|
141
|
+
- lib/watir-classic/element_collection.rb
|
142
|
+
- lib/watir-classic/element_extensions.rb
|
143
|
+
- lib/watir-classic/exceptions.rb
|
144
|
+
- lib/watir-classic/form.rb
|
145
|
+
- lib/watir-classic/frame.rb
|
146
|
+
- lib/watir-classic/ie-class.rb
|
147
|
+
- lib/watir-classic/ie-process.rb
|
148
|
+
- lib/watir-classic/ie.rb
|
149
|
+
- lib/watir-classic/image.rb
|
150
|
+
- lib/watir-classic/input_elements.rb
|
151
|
+
- lib/watir-classic/irb-history.rb
|
152
|
+
- lib/watir-classic/link.rb
|
153
|
+
- lib/watir-classic/locator.rb
|
154
|
+
- lib/watir-classic/logger.rb
|
155
|
+
- lib/watir-classic/matches.rb
|
156
|
+
- lib/watir-classic/modal_dialog.rb
|
157
|
+
- lib/watir-classic/module.rb
|
158
|
+
- lib/watir-classic/non_control_elements.rb
|
159
|
+
- lib/watir-classic/options.rb
|
160
|
+
- lib/watir-classic/page-container.rb
|
161
|
+
- lib/watir-classic/process.rb
|
162
|
+
- lib/watir-classic/screen_capture.rb
|
163
|
+
- lib/watir-classic/supported_elements.rb
|
164
|
+
- lib/watir-classic/table.rb
|
165
|
+
- lib/watir-classic/testcase.rb
|
166
|
+
- lib/watir-classic/util.rb
|
167
|
+
- lib/watir-classic/version.rb
|
168
|
+
- lib/watir-classic/wait.rb
|
169
|
+
- lib/watir-classic/waiter.rb
|
170
|
+
- lib/watir-classic/wait_helper.rb
|
171
|
+
- lib/watir-classic/win32.rb
|
172
|
+
- lib/watir-classic/win32ole.rb
|
173
|
+
- lib/watir-classic/window.rb
|
174
|
+
- lib/watir-classic/xpath_locator.rb
|
175
|
+
- lib/watir-classic/dialogs/file_field.rb
|
176
|
+
- lib/watir-classic/dialogs/javascript.rb
|
177
|
+
- unittests/all_tests.rb
|
178
|
+
- unittests/buttons_xpath_test.rb
|
179
|
+
- unittests/checkbox_test.rb
|
180
|
+
- unittests/checkbox_xpath_test.rb
|
181
|
+
- unittests/click_no_wait_test.rb
|
182
|
+
- unittests/close_all_test.rb
|
183
|
+
- unittests/core_tests.rb
|
184
|
+
- unittests/css_selector_test.rb
|
185
|
+
- unittests/css_test.rb
|
186
|
+
- unittests/dialog_test.rb
|
187
|
+
- unittests/div2_xpath_test.rb
|
188
|
+
- unittests/div_test.rb
|
189
|
+
- unittests/div_xpath_test.rb
|
190
|
+
- unittests/document_standards.rb
|
191
|
+
- unittests/element_collections_test.rb
|
192
|
+
- unittests/element_collection_indexes_test.rb
|
193
|
+
- unittests/element_test.rb
|
194
|
+
- unittests/errorchecker_test.rb
|
195
|
+
- unittests/filefield_test.rb
|
196
|
+
- unittests/filefield_xpath_test.rb
|
197
|
+
- unittests/form_test.rb
|
198
|
+
- unittests/form_xpath_test.rb
|
199
|
+
- unittests/frame_test.rb
|
200
|
+
- unittests/google_form_test.rb
|
201
|
+
- unittests/ie_exists_test.rb
|
202
|
+
- unittests/ie_mock.rb
|
203
|
+
- unittests/ie_test.rb
|
204
|
+
- unittests/images_test.rb
|
205
|
+
- unittests/images_xpath_test.rb
|
206
|
+
- unittests/index_specifier_test.rb
|
207
|
+
- unittests/js_events_test.rb
|
208
|
+
- unittests/links_multi_test.rb
|
209
|
+
- unittests/links_test.rb
|
210
|
+
- unittests/links_xpath_test.rb
|
211
|
+
- unittests/lists_test.rb
|
212
|
+
- unittests/map_test.rb
|
213
|
+
- unittests/minmax_test.rb
|
214
|
+
- unittests/navigate_test.rb
|
215
|
+
- unittests/nbsp_xpath_test.rb
|
216
|
+
- unittests/non_core_tests.rb
|
217
|
+
- unittests/no_wait_test.rb
|
218
|
+
- unittests/pagecontainstext_test.rb
|
219
|
+
- unittests/parent_child_test.rb
|
220
|
+
- unittests/perf_test.rb
|
221
|
+
- unittests/pre_test.rb
|
222
|
+
- unittests/radios_test.rb
|
223
|
+
- unittests/radios_xpath_test.rb
|
224
|
+
- unittests/security_setting_test.rb
|
225
|
+
- unittests/selectbox_test.rb
|
226
|
+
- unittests/selectbox_xpath_test.rb
|
227
|
+
- unittests/setup.rb
|
228
|
+
- unittests/speed_settings_test.rb
|
229
|
+
- unittests/table_cell_using_xpath_test.rb
|
230
|
+
- unittests/table_test.rb
|
231
|
+
- unittests/table_xpath_test.rb
|
232
|
+
- unittests/test_tests.rb
|
233
|
+
- unittests/textarea_test.rb
|
234
|
+
- unittests/textarea_xpath_test.rb
|
235
|
+
- unittests/textfields_test.rb
|
236
|
+
- unittests/textfields_xpath_test.rb
|
237
|
+
- unittests/textfield_for_ch_char_test.rb
|
238
|
+
- unittests/version_test.rb
|
239
|
+
- unittests/win32ole_so_test.rb
|
240
|
+
- unittests/window_tests.rb
|
241
|
+
- unittests/xpath_tests.rb
|
242
|
+
- unittests/html/blankpage.html
|
243
|
+
- unittests/html/buttons1.html
|
244
|
+
- unittests/html/checkboxes1.html
|
245
|
+
- unittests/html/click_no_wait.html
|
246
|
+
- unittests/html/complex_table.html
|
247
|
+
- unittests/html/cssTest.html
|
248
|
+
- unittests/html/depot_store.html
|
249
|
+
- unittests/html/div.html
|
250
|
+
- unittests/html/div_xml.html
|
251
|
+
- unittests/html/fileupload.html
|
252
|
+
- unittests/html/forms2.html
|
253
|
+
- unittests/html/forms3.html
|
254
|
+
- unittests/html/forms4.html
|
255
|
+
- unittests/html/formTest1.html
|
256
|
+
- unittests/html/frame_buttons.html
|
257
|
+
- unittests/html/frame_links.html
|
258
|
+
- unittests/html/frame_multi.html
|
259
|
+
- unittests/html/google_india.html
|
260
|
+
- unittests/html/ie7_document_standards.html
|
261
|
+
- unittests/html/ie8_document_standards.html
|
262
|
+
- unittests/html/ie9_document_standards.html
|
263
|
+
- unittests/html/iframe.html
|
264
|
+
- unittests/html/iframeTest.html
|
265
|
+
- unittests/html/iframeTest1.html
|
266
|
+
- unittests/html/iframeTest2.html
|
267
|
+
- unittests/html/images1.html
|
268
|
+
- unittests/html/JavascriptClick.html
|
269
|
+
- unittests/html/javascriptevents.html
|
270
|
+
- unittests/html/links1.html
|
271
|
+
- unittests/html/links2.html
|
272
|
+
- unittests/html/links_multi.html
|
273
|
+
- unittests/html/link_pass.html
|
274
|
+
- unittests/html/lists.html
|
275
|
+
- unittests/html/list_matters.html
|
276
|
+
- unittests/html/map_test.html
|
277
|
+
- unittests/html/modal_dialog.html
|
278
|
+
- unittests/html/modal_dialog_launcher.html
|
279
|
+
- unittests/html/multiple_specifiers.html
|
280
|
+
- unittests/html/nestedFrames.html
|
281
|
+
- unittests/html/new_browser.html
|
282
|
+
- unittests/html/pass.html
|
283
|
+
- unittests/html/popups1.html
|
284
|
+
- unittests/html/pre.html
|
285
|
+
- unittests/html/quirks_document_standards.html
|
286
|
+
- unittests/html/radioButtons1.html
|
287
|
+
- unittests/html/selectboxes1.html
|
288
|
+
- unittests/html/select_tealeaf.html
|
289
|
+
- unittests/html/simple_table.html
|
290
|
+
- unittests/html/simple_table_buttons.html
|
291
|
+
- unittests/html/simple_table_columns.html
|
292
|
+
- unittests/html/table1.html
|
293
|
+
- unittests/html/tableCell_using_xpath.html
|
294
|
+
- unittests/html/table_and_tablerow_to_a.html
|
295
|
+
- unittests/html/textarea.html
|
296
|
+
- unittests/html/textfields1.html
|
297
|
+
- unittests/html/textsearch.html
|
298
|
+
- unittests/html/wallofcheckboxes.html
|
299
|
+
- unittests/html/xpath_nbsp.html
|
300
|
+
- unittests/html/zeroindex.html
|
301
|
+
- unittests/html/images/1.gif
|
302
|
+
- unittests/html/images/2.GIF
|
303
|
+
- unittests/html/images/3.GIF
|
304
|
+
- unittests/html/images/button.jpg
|
305
|
+
- unittests/html/images/circle.jpg
|
306
|
+
- unittests/html/images/map.GIF
|
307
|
+
- unittests/html/images/map2.gif
|
308
|
+
- unittests/html/images/minus.GIF
|
309
|
+
- unittests/html/images/originaltriangle.jpg
|
310
|
+
- unittests/html/images/plus.gif
|
311
|
+
- unittests/html/images/square.jpg
|
312
|
+
- unittests/html/images/triangle.jpg
|
313
|
+
- unittests/other/all_tests_concurrent.rb
|
314
|
+
- unittests/other/navigate_exception_test.rb
|
315
|
+
- unittests/other/rexml_unit_test.rb
|
316
|
+
- unittests/other/screen_capture_test.rb
|
317
|
+
- unittests/other/testcase_method_order_test.rb
|
318
|
+
- unittests/other/testcase_verify_test.rb
|
319
|
+
- unittests/other/wait_until_test.rb
|
320
|
+
- unittests/windows/attach_to_existing_window_test.rb
|
321
|
+
- unittests/windows/attach_to_new_window_test.rb
|
322
|
+
- unittests/windows/close_window_test.rb
|
323
|
+
- unittests/windows/frame_links_test.rb
|
324
|
+
- unittests/windows/ie-each_test.rb
|
325
|
+
- unittests/windows/modal_dialog_test.rb
|
326
|
+
- unittests/windows/new_process_test.rb
|
327
|
+
- unittests/windows/new_test.rb
|
328
|
+
- unittests/windows/open_close_test.rb
|
329
|
+
- unittests/windows/send_keys_test.rb
|
330
|
+
- lib/watir-classic/IEDialog/Release/IEDialog.dll
|
331
|
+
- lib/watir-classic/win32ole/1.8.7/win32ole.so
|
332
|
+
- lib/watir-classic/win32ole/1.9.3/win32ole.so
|
333
|
+
- lib/watir-classic/contrib/enabled_popup.rb
|
334
|
+
- lib/watir-classic/contrib/ie-new-process.rb
|
335
|
+
- lib/watir-classic/contrib/page_checker.rb
|
336
|
+
- bin/watir-console
|
337
|
+
homepage: http://www.watir.com/
|
338
|
+
licenses: []
|
339
|
+
post_install_message:
|
340
|
+
rdoc_options:
|
341
|
+
- --title
|
342
|
+
- Watir API Reference
|
343
|
+
- --accessor
|
344
|
+
- def_wrap=R,def_wrap_guard=R
|
345
|
+
- --main
|
346
|
+
- README.rdoc
|
347
|
+
- --exclude
|
348
|
+
- unittests|camel_case.rb
|
349
|
+
require_paths:
|
350
|
+
- lib
|
351
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
352
|
+
none: false
|
353
|
+
requirements:
|
354
|
+
- - ! '>='
|
355
|
+
- !ruby/object:Gem::Version
|
356
|
+
version: 1.8.7
|
357
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
358
|
+
none: false
|
359
|
+
requirements:
|
360
|
+
- - ! '>='
|
361
|
+
- !ruby/object:Gem::Version
|
362
|
+
version: '0'
|
363
|
+
requirements:
|
364
|
+
- Microsoft Windows running Internet Explorer 5.5 or later.
|
365
|
+
rubyforge_project: Watir
|
366
|
+
rubygems_version: 1.8.21
|
367
|
+
signing_key:
|
368
|
+
specification_version: 3
|
369
|
+
summary: Automated testing tool for web applications.
|
370
|
+
test_files: []
|