rubinium 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES +7 -0
- data/MIT-LICENSE +21 -0
- data/README +137 -0
- data/Rakefile +139 -0
- data/TODO +7 -0
- data/doc/examples/rtc_site_live.rb +12 -0
- data/doc/examples/rts_main.rb +9 -0
- data/doc/examples/rts_shared_code.rb +25 -0
- data/lib/rubinium.rb +9 -0
- data/lib/rubinium/string.rb +3 -0
- data/lib/rubinium/test_base.rb +80 -0
- data/lib/rubinium/test_suite.rb +53 -0
- data/lib/rubinium/validator.rb +16 -0
- data/test/selenium_tests/test_click.rb +22 -0
- data/test/selenium_tests/test_open.rb +11 -0
- data/test/tc_file_creation.rb +60 -0
- data/test/ts_rubinium.rb +1 -0
- data/vendor/selenium-0.6.0/install-readme.txt +9 -0
- data/vendor/selenium-0.6.0/selenium/SeleneseRunner.html +253 -0
- data/vendor/selenium-0.6.0/selenium/SeleniumLog.html +61 -0
- data/vendor/selenium-0.6.0/selenium/TestRunner-splash.html +55 -0
- data/vendor/selenium-0.6.0/selenium/TestRunner.hta +146 -0
- data/vendor/selenium-0.6.0/selenium/TestRunner.html +146 -0
- data/vendor/selenium-0.6.0/selenium/devtests/TestClickInFrame.html +58 -0
- data/vendor/selenium-0.6.0/selenium/devtests/TestOpenInFrame.html +48 -0
- data/vendor/selenium-0.6.0/selenium/devtests/TestOpenInNewWindow.html +78 -0
- data/vendor/selenium-0.6.0/selenium/devtests/TestOpenMeta.html +43 -0
- data/vendor/selenium-0.6.0/selenium/devtests/TestSuite.html +39 -0
- data/vendor/selenium-0.6.0/selenium/devtests/meta/page.html +5 -0
- data/vendor/selenium-0.6.0/selenium/dom-images/butmin.gif +0 -0
- data/vendor/selenium-0.6.0/selenium/dom-images/butplus.gif +0 -0
- data/vendor/selenium-0.6.0/selenium/dom-styles/default.css +298 -0
- data/vendor/selenium-0.6.0/selenium/domviewer.html +16 -0
- data/vendor/selenium-0.6.0/selenium/html-xpath/carnation.jpg +0 -0
- data/vendor/selenium-0.6.0/selenium/html-xpath/example.html +75 -0
- data/vendor/selenium-0.6.0/selenium/html-xpath/html-xpath-patched.js +657 -0
- data/vendor/selenium-0.6.0/selenium/html-xpath/html-xpath.js +610 -0
- data/vendor/selenium-0.6.0/selenium/html-xpath/license.txt +504 -0
- data/vendor/selenium-0.6.0/selenium/html-xpath/rainbow.jpg +0 -0
- data/vendor/selenium-0.6.0/selenium/htmlutils.js +283 -0
- data/vendor/selenium-0.6.0/selenium/index.html +60 -0
- data/vendor/selenium-0.6.0/selenium/jsmock/mock-tests.html +205 -0
- data/vendor/selenium-0.6.0/selenium/jsmock/mock.js +124 -0
- data/vendor/selenium-0.6.0/selenium/selenium-api.js +683 -0
- data/vendor/selenium-0.6.0/selenium/selenium-browserbot.js +930 -0
- data/vendor/selenium-0.6.0/selenium/selenium-commandhandlers.js +286 -0
- data/vendor/selenium-0.6.0/selenium/selenium-domviewer.js +188 -0
- data/vendor/selenium-0.6.0/selenium/selenium-executionloop.js +250 -0
- data/vendor/selenium-0.6.0/selenium/selenium-fitrunner.js +597 -0
- data/vendor/selenium-0.6.0/selenium/selenium-logging.js +88 -0
- data/vendor/selenium-0.6.0/selenium/selenium-logo.png +0 -0
- data/vendor/selenium-0.6.0/selenium/selenium-tableparser.js +50 -0
- data/vendor/selenium-0.6.0/selenium/selenium.css +211 -0
- data/vendor/selenium-0.6.0/selenium/tests/ErrorCheckingTestSuite.html +36 -0
- data/vendor/selenium-0.6.0/selenium/tests/GoogleTestSearch.html +69 -0
- data/vendor/selenium-0.6.0/selenium/tests/GoogleTestSuite.html +32 -0
- data/vendor/selenium-0.6.0/selenium/tests/JsUnitSuite.html +38 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestClick.html +128 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestClickJavascriptHref.html +115 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestCommandError.html +79 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestConfirmations.html +77 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestErrorChecking.html +71 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestFailingAssert.html +59 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestFailingVerifications.html +198 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestFocusOnBlur.html +53 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestGoBack.html +81 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestImplicitLocators.html +81 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestJavascriptParameters.html +91 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestLocators.html +161 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestModalDialog.html +58 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestModalDialogDialog.html +48 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestOpen.html +66 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestPatternMatching.html +127 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestPause.html +78 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestPrompting.html +82 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestProxy.html +62 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestSelect.html +111 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestSelectWindow.html +106 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestStore.html +165 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestSuite-InternetExplorer.html +79 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestSuite-Konqueror.html +75 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestSuite-Safari.html +75 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestSuite.html +75 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestType.html +79 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestUserExtensions.html +81 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestVerifications.html +164 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestVerifyAlerts.html +80 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestVerifyAlertsFailures.html +108 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestVerifyConfirmationFailures.html +86 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestVerifyEditable.html +70 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestVerifyEditableFailures.html +95 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestVisibility.html +91 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestVisibilityFailures.html +131 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestWait.html +112 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestWaitFor.html +63 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestWaitInPopupWindow.html +94 -0
- data/vendor/selenium-0.6.0/selenium/tests/TestXPathLocators.html +98 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/alert-handling-tests.html +79 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/assert-tests.html +113 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/browserbot-tests.html +123 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/command-factory-tests.html +290 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/command-handler-tests.html +115 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/confirm-handling-tests.html +97 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/error-checking-command-tests.html +198 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/event-bubble-tests.html +106 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/optionlocator-tests.html +180 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/pagebot-accessor-tests.html +65 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/pagebot-action-tests.html +200 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/pagebot-attribute-tests.html +98 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/pagebot-locator-tests-include.html +33 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/pagebot-locator-tests.html +258 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/pagebot-property-tests.html +49 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/pattern-matcher-tests.html +66 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/selenium-api-tests.html +412 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/selenium-parameter-tests.html +98 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/suite.html +52 -0
- data/vendor/selenium-0.6.0/selenium/tests/browserbot/testloop-handle-error-tests.html +74 -0
- data/vendor/selenium-0.6.0/selenium/tests/events/TestButtonEvents.html +72 -0
- data/vendor/selenium-0.6.0/selenium/tests/events/TestCheckboxEvents.html +107 -0
- data/vendor/selenium-0.6.0/selenium/tests/events/TestFireEvents.html +75 -0
- data/vendor/selenium-0.6.0/selenium/tests/events/TestLinkEvents.html +43 -0
- data/vendor/selenium-0.6.0/selenium/tests/events/TestRadioEvents.html +149 -0
- data/vendor/selenium-0.6.0/selenium/tests/events/TestSelectEvents.html +122 -0
- data/vendor/selenium-0.6.0/selenium/tests/events/TestTextEvents.html +87 -0
- data/vendor/selenium-0.6.0/selenium/tests/events/readme.txt +26 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/banner.gif +0 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_async_event.html +36 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_click_javascript_page.html +34 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_click_page1.html +31 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_click_page2.html +30 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_confirm.html +34 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_dummy_page.html +26 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_editable.html +36 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_focus_on_blur.html +33 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_form_events.html +98 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_framed_page.html +7 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_just_text.html +22 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_locators.html +34 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_modal_dialog.html +29 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_modal_dialog_dialog.html +35 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_open.html +23 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_prompt.html +34 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_reload_onchange_page.html +32 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_select.html +35 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_select_window.html +29 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_select_window_popup.html +28 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_slowloading_page.html +27 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_store_value.html +23 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_type_page1.html +37 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_type_page2.html +61 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_verifications.html +42 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_verify_alert.html +46 -0
- data/vendor/selenium-0.6.0/selenium/tests/html/test_visibility.html +53 -0
- data/vendor/selenium-0.6.0/selenium/tests/readme.txt +1 -0
- data/vendor/selenium-0.6.0/selenium/tests/tableparser/tableparser-tests.html +122 -0
- data/vendor/selenium-0.6.0/selenium/tests/tinyWebServer.py +70 -0
- data/vendor/selenium-0.6.0/selenium/user-extensions.js.sample +62 -0
- data/vendor/selenium-0.6.0/selenium/version.txt +1 -0
- data/vendor/selenium-0.6.0/selenium/xmlextras.js +153 -0
- data/vendor/selenium-0.6.0/selenium/xpath.js +3910 -0
- metadata +216 -0
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
2
|
+
<!--
|
|
3
|
+
Copyright 2004 ThoughtWorks, Inc
|
|
4
|
+
|
|
5
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
you may not use this file except in compliance with the License.
|
|
7
|
+
You may obtain a copy of the License at
|
|
8
|
+
|
|
9
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
|
|
11
|
+
Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
See the License for the specific language governing permissions and
|
|
15
|
+
limitations under the License.
|
|
16
|
+
-->
|
|
17
|
+
<html>
|
|
18
|
+
<head>
|
|
19
|
+
<meta content="text/html; charset=ISO-8859-1"
|
|
20
|
+
http-equiv="content-type">
|
|
21
|
+
<title>Test Visiblity</title>
|
|
22
|
+
</head>
|
|
23
|
+
<body>
|
|
24
|
+
<table cellpadding="1" cellspacing="1" border="1">
|
|
25
|
+
<tbody>
|
|
26
|
+
|
|
27
|
+
<tr>
|
|
28
|
+
<td rowspan="1" colspan="3">Test Visiblity<br>
|
|
29
|
+
</td>
|
|
30
|
+
</tr>
|
|
31
|
+
<tr>
|
|
32
|
+
<td>open</td>
|
|
33
|
+
<td>./tests/html/test_visibility.html</td>
|
|
34
|
+
<td> </td>
|
|
35
|
+
</tr>
|
|
36
|
+
|
|
37
|
+
<tr>
|
|
38
|
+
<td>assertFailureOnNext</td>
|
|
39
|
+
<td>Element visibleParagraph is visible.</td>
|
|
40
|
+
<td></td>
|
|
41
|
+
</tr>
|
|
42
|
+
<tr>
|
|
43
|
+
<td>verifyNotVisible</td>
|
|
44
|
+
<td>visibleParagraph</td>
|
|
45
|
+
<td> </td>
|
|
46
|
+
</tr>
|
|
47
|
+
<tr>
|
|
48
|
+
<td>assertFailureOnNext</td>
|
|
49
|
+
<td>Element hiddenParagraph not visible.</td>
|
|
50
|
+
<td></td>
|
|
51
|
+
</tr>
|
|
52
|
+
<tr>
|
|
53
|
+
<td>verifyVisible</td>
|
|
54
|
+
<td>hiddenParagraph</td>
|
|
55
|
+
<td> </td>
|
|
56
|
+
</tr>
|
|
57
|
+
<tr>
|
|
58
|
+
<td>assertFailureOnNext</td>
|
|
59
|
+
<td>Element suppressedParagraph not visible.</td>
|
|
60
|
+
<td></td>
|
|
61
|
+
</tr>
|
|
62
|
+
<tr>
|
|
63
|
+
<td>verifyVisible</td>
|
|
64
|
+
<td>suppressedParagraph</td>
|
|
65
|
+
<td> </td>
|
|
66
|
+
</tr>
|
|
67
|
+
<tr>
|
|
68
|
+
<td>assertFailureOnNext</td>
|
|
69
|
+
<td>Element classSuppressedParagraph not visible.</td>
|
|
70
|
+
<td></td>
|
|
71
|
+
</tr>
|
|
72
|
+
<tr>
|
|
73
|
+
<td>verifyVisible</td>
|
|
74
|
+
<td>classSuppressedParagraph</td>
|
|
75
|
+
<td> </td>
|
|
76
|
+
</tr>
|
|
77
|
+
<tr>
|
|
78
|
+
<td>assertFailureOnNext</td>
|
|
79
|
+
<td>Element jsClassSuppressedParagraph not visible.</td>
|
|
80
|
+
<td></td>
|
|
81
|
+
</tr>
|
|
82
|
+
<tr>
|
|
83
|
+
<td>verifyVisible</td>
|
|
84
|
+
<td>jsClassSuppressedParagraph</td>
|
|
85
|
+
<td> </td>
|
|
86
|
+
</tr>
|
|
87
|
+
<tr>
|
|
88
|
+
<td>assertFailureOnNext</td>
|
|
89
|
+
<td>Element hiddenSubElement not visible.</td>
|
|
90
|
+
<td></td>
|
|
91
|
+
</tr>
|
|
92
|
+
<tr>
|
|
93
|
+
<td>verifyVisible</td>
|
|
94
|
+
<td>hiddenSubElement</td>
|
|
95
|
+
<td> </td>
|
|
96
|
+
</tr>
|
|
97
|
+
<tr>
|
|
98
|
+
<td>assertFailureOnNext</td>
|
|
99
|
+
<td>Element suppressedSubElement not visible.</td>
|
|
100
|
+
<td></td>
|
|
101
|
+
</tr>
|
|
102
|
+
<tr>
|
|
103
|
+
<td>verifyVisible</td>
|
|
104
|
+
<td>suppressedSubElement</td>
|
|
105
|
+
<td> </td>
|
|
106
|
+
</tr>
|
|
107
|
+
<tr>
|
|
108
|
+
<td>assertFailureOnNext</td>
|
|
109
|
+
<td>Element jsHiddenParagraph not visible.</td>
|
|
110
|
+
<td></td>
|
|
111
|
+
</tr>
|
|
112
|
+
<tr>
|
|
113
|
+
<td>verifyVisible</td>
|
|
114
|
+
<td>jsHiddenParagraph</td>
|
|
115
|
+
<td> </td>
|
|
116
|
+
</tr>
|
|
117
|
+
<tr>
|
|
118
|
+
<td>assertFailureOnNext</td>
|
|
119
|
+
<td>Element nonExistantElement not present.</td>
|
|
120
|
+
<td></td>
|
|
121
|
+
</tr>
|
|
122
|
+
<tr>
|
|
123
|
+
<td>verifyVisible</td>
|
|
124
|
+
<td>nonExistantElement</td>
|
|
125
|
+
<td> </td>
|
|
126
|
+
</tr>
|
|
127
|
+
|
|
128
|
+
</tbody>
|
|
129
|
+
</table>
|
|
130
|
+
</body>
|
|
131
|
+
</html>
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
2
|
+
<!--
|
|
3
|
+
Copyright 2004 ThoughtWorks, Inc
|
|
4
|
+
|
|
5
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
you may not use this file except in compliance with the License.
|
|
7
|
+
You may obtain a copy of the License at
|
|
8
|
+
|
|
9
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
|
|
11
|
+
Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
See the License for the specific language governing permissions and
|
|
15
|
+
limitations under the License.
|
|
16
|
+
-->
|
|
17
|
+
<html>
|
|
18
|
+
<head>
|
|
19
|
+
<meta content="text/html; charset=ISO-8859-1"
|
|
20
|
+
http-equiv="content-type">
|
|
21
|
+
<title>Test Select and Pause</title>
|
|
22
|
+
</head>
|
|
23
|
+
<body>
|
|
24
|
+
<table cellpadding="1" cellspacing="1" border="1">
|
|
25
|
+
<tbody>
|
|
26
|
+
<tr>
|
|
27
|
+
<td rowspan="1" colspan="3">Test AndWait commands for Reload<br>
|
|
28
|
+
</td>
|
|
29
|
+
</tr>
|
|
30
|
+
<!-- Link click -->
|
|
31
|
+
<tr>
|
|
32
|
+
<td>open</td>
|
|
33
|
+
<td>./tests/html/test_reload_onchange_page.html</td>
|
|
34
|
+
<td> </td>
|
|
35
|
+
</tr>
|
|
36
|
+
<tr>
|
|
37
|
+
<td>clickAndWait</td>
|
|
38
|
+
<td>theLink</td>
|
|
39
|
+
<td></td>
|
|
40
|
+
</tr>
|
|
41
|
+
<!-- Page should reload -->
|
|
42
|
+
<tr>
|
|
43
|
+
<td>verifyTitle</td>
|
|
44
|
+
<td>Slow Loading Page</td>
|
|
45
|
+
<td></td>
|
|
46
|
+
</tr>
|
|
47
|
+
|
|
48
|
+
<tr>
|
|
49
|
+
<td>open</td>
|
|
50
|
+
<td>./tests/html/test_reload_onchange_page.html</td>
|
|
51
|
+
<td> </td>
|
|
52
|
+
</tr>
|
|
53
|
+
<tr>
|
|
54
|
+
<td>selectAndWait</td>
|
|
55
|
+
<td>theSelect</td>
|
|
56
|
+
<td>Second Option</td>
|
|
57
|
+
</tr>
|
|
58
|
+
<!-- Page should reload -->
|
|
59
|
+
<tr>
|
|
60
|
+
<td>verifyTitle</td>
|
|
61
|
+
<td>Slow Loading Page</td>
|
|
62
|
+
<td></td>
|
|
63
|
+
</tr>
|
|
64
|
+
|
|
65
|
+
<!-- Textbox with onblur -->
|
|
66
|
+
<tr>
|
|
67
|
+
<td>open</td>
|
|
68
|
+
<td>./tests/html/test_reload_onchange_page.html</td>
|
|
69
|
+
<td> </td>
|
|
70
|
+
</tr>
|
|
71
|
+
<tr>
|
|
72
|
+
<td>typeAndWait</td>
|
|
73
|
+
<td>theTextbox</td>
|
|
74
|
+
<td>new value</td>
|
|
75
|
+
</tr>
|
|
76
|
+
<tr>
|
|
77
|
+
<td>verifyTitle</td>
|
|
78
|
+
<td>Slow Loading Page</td>
|
|
79
|
+
<td></td>
|
|
80
|
+
</tr>
|
|
81
|
+
|
|
82
|
+
<!-- Submit button -->
|
|
83
|
+
<tr>
|
|
84
|
+
<td>open</td>
|
|
85
|
+
<td>./tests/html/test_reload_onchange_page.html</td>
|
|
86
|
+
<td> </td>
|
|
87
|
+
</tr>
|
|
88
|
+
<tr>
|
|
89
|
+
<td>clickAndWait</td>
|
|
90
|
+
<td>theSubmit</td>
|
|
91
|
+
<td></td>
|
|
92
|
+
</tr>
|
|
93
|
+
<tr>
|
|
94
|
+
<td>verifyTitle</td>
|
|
95
|
+
<td>Slow Loading Page</td>
|
|
96
|
+
<td></td>
|
|
97
|
+
</tr>
|
|
98
|
+
<tr>
|
|
99
|
+
<td>clickAndWait</td>
|
|
100
|
+
<td>slowPage_reload</td>
|
|
101
|
+
<td> </td>
|
|
102
|
+
</tr>
|
|
103
|
+
<tr>
|
|
104
|
+
<td>verifyTitle</td>
|
|
105
|
+
<td>Slow Loading Page</td>
|
|
106
|
+
<td></td>
|
|
107
|
+
</tr>
|
|
108
|
+
|
|
109
|
+
</tbody>
|
|
110
|
+
</table>
|
|
111
|
+
</body>
|
|
112
|
+
</html>
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
2
|
+
<!--
|
|
3
|
+
Copyright 2004 ThoughtWorks, Inc
|
|
4
|
+
|
|
5
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
you may not use this file except in compliance with the License.
|
|
7
|
+
You may obtain a copy of the License at
|
|
8
|
+
|
|
9
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
|
|
11
|
+
Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
See the License for the specific language governing permissions and
|
|
15
|
+
limitations under the License.
|
|
16
|
+
-->
|
|
17
|
+
<html>
|
|
18
|
+
<head>
|
|
19
|
+
<meta content="text/html; charset=ISO-8859-1"
|
|
20
|
+
http-equiv="content-type">
|
|
21
|
+
<title>Test WaitFor</title>
|
|
22
|
+
</head>
|
|
23
|
+
<body>
|
|
24
|
+
<table cellpadding="1" cellspacing="1" border="1">
|
|
25
|
+
<tbody>
|
|
26
|
+
<tr>
|
|
27
|
+
<td rowspan="1" colspan="3">Test WaitFor<br>
|
|
28
|
+
</td>
|
|
29
|
+
</tr>
|
|
30
|
+
<tr>
|
|
31
|
+
<td>open</td>
|
|
32
|
+
<td>./tests/html/test_async_event.html</td>
|
|
33
|
+
<td> </td>
|
|
34
|
+
</tr>
|
|
35
|
+
<tr>
|
|
36
|
+
<td>assertValue</td>
|
|
37
|
+
<td>theField</td>
|
|
38
|
+
<td>oldValue</td>
|
|
39
|
+
</tr>
|
|
40
|
+
<tr>
|
|
41
|
+
<td>click</td>
|
|
42
|
+
<td>theButton</td>
|
|
43
|
+
<td>nowait</td>
|
|
44
|
+
</tr>
|
|
45
|
+
<tr>
|
|
46
|
+
<td>assertValue</td>
|
|
47
|
+
<td>theField</td>
|
|
48
|
+
<td>oldValue</td>
|
|
49
|
+
</tr>
|
|
50
|
+
<tr>
|
|
51
|
+
<td>waitForValue</td>
|
|
52
|
+
<td>theField</td>
|
|
53
|
+
<td>newValue</td>
|
|
54
|
+
</tr>
|
|
55
|
+
<tr>
|
|
56
|
+
<td>verifyValue</td>
|
|
57
|
+
<td>theField</td>
|
|
58
|
+
<td>newValue</td>
|
|
59
|
+
</tr>
|
|
60
|
+
</tbody>
|
|
61
|
+
</table>
|
|
62
|
+
</body>
|
|
63
|
+
</html>
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
2
|
+
<!--
|
|
3
|
+
Copyright 2004 ThoughtWorks, Inc
|
|
4
|
+
|
|
5
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
you may not use this file except in compliance with the License.
|
|
7
|
+
You may obtain a copy of the License at
|
|
8
|
+
|
|
9
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
|
|
11
|
+
Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
See the License for the specific language governing permissions and
|
|
15
|
+
limitations under the License.
|
|
16
|
+
-->
|
|
17
|
+
<html>
|
|
18
|
+
<head>
|
|
19
|
+
<meta content="text/html; charset=ISO-8859-1"
|
|
20
|
+
http-equiv="content-type">
|
|
21
|
+
<title>Test SelectWindow</title>
|
|
22
|
+
</head>
|
|
23
|
+
<body>
|
|
24
|
+
<table cellpadding="1" cellspacing="1" border="1">
|
|
25
|
+
<tbody>
|
|
26
|
+
<tr>
|
|
27
|
+
<td rowspan="1" colspan="3">Test selectWindow<br>
|
|
28
|
+
</td>
|
|
29
|
+
</tr>
|
|
30
|
+
<tr>
|
|
31
|
+
<td>open</td>
|
|
32
|
+
<td>./tests/html/test_select_window.html</td>
|
|
33
|
+
<td> </td>
|
|
34
|
+
</tr>
|
|
35
|
+
<tr>
|
|
36
|
+
<td>click</td>
|
|
37
|
+
<td>popupPage</td>
|
|
38
|
+
<td></td>
|
|
39
|
+
</tr>
|
|
40
|
+
<tr>
|
|
41
|
+
<td>pause</td>
|
|
42
|
+
<td>500</td>
|
|
43
|
+
<td/>
|
|
44
|
+
</tr>
|
|
45
|
+
<tr>
|
|
46
|
+
<td>selectWindow</td>
|
|
47
|
+
<td>myPopupWindow</td>
|
|
48
|
+
<td> </td>
|
|
49
|
+
</tr>
|
|
50
|
+
<tr>
|
|
51
|
+
<td>verifyTitle</td>
|
|
52
|
+
<td>Select Window Popup</td>
|
|
53
|
+
<td> </td>
|
|
54
|
+
</tr>
|
|
55
|
+
|
|
56
|
+
<!-- Check page transitions in popup window -->
|
|
57
|
+
<!-- quick loading page -->
|
|
58
|
+
<tr>
|
|
59
|
+
<td>clickAndWait</td>
|
|
60
|
+
<td>link=Click to load new page</td>
|
|
61
|
+
<td></td>
|
|
62
|
+
</tr>
|
|
63
|
+
<tr>
|
|
64
|
+
<td>verifyTitle</td>
|
|
65
|
+
<td>Reload Page</td>
|
|
66
|
+
<td> </td>
|
|
67
|
+
</tr>
|
|
68
|
+
|
|
69
|
+
<!-- Slow loading page -->
|
|
70
|
+
<tr>
|
|
71
|
+
<td>clickAndWait</td>
|
|
72
|
+
<td>link=Click here</td>
|
|
73
|
+
<td></td>
|
|
74
|
+
</tr>
|
|
75
|
+
<tr>
|
|
76
|
+
<td>verifyTitle</td>
|
|
77
|
+
<td>Slow Loading Page</td>
|
|
78
|
+
<td> </td>
|
|
79
|
+
</tr>
|
|
80
|
+
|
|
81
|
+
<tr>
|
|
82
|
+
<td>close</td>
|
|
83
|
+
<td></td>
|
|
84
|
+
<td></td>
|
|
85
|
+
</tr>
|
|
86
|
+
<tr>
|
|
87
|
+
<td>selectWindow</td>
|
|
88
|
+
<td>null</td>
|
|
89
|
+
<td> </td>
|
|
90
|
+
</tr>
|
|
91
|
+
</tbody>
|
|
92
|
+
</table>
|
|
93
|
+
</body>
|
|
94
|
+
</html>
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
2
|
+
<!--
|
|
3
|
+
Copyright 2004 ThoughtWorks, Inc
|
|
4
|
+
|
|
5
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
you may not use this file except in compliance with the License.
|
|
7
|
+
You may obtain a copy of the License at
|
|
8
|
+
|
|
9
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
|
|
11
|
+
Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
See the License for the specific language governing permissions and
|
|
15
|
+
limitations under the License.
|
|
16
|
+
-->
|
|
17
|
+
<html>
|
|
18
|
+
<head>
|
|
19
|
+
<meta content="text/html; charset=ISO-8859-1"
|
|
20
|
+
http-equiv="content-type">
|
|
21
|
+
<title>Test XPath Locators</title>
|
|
22
|
+
</head>
|
|
23
|
+
<body>
|
|
24
|
+
<table cellpadding="1" cellspacing="1" border="1">
|
|
25
|
+
<tbody>
|
|
26
|
+
<tr>
|
|
27
|
+
<td rowspan="1" colspan="3">Test XPath Locators<br>
|
|
28
|
+
</td>
|
|
29
|
+
</tr>
|
|
30
|
+
|
|
31
|
+
<tr>
|
|
32
|
+
<td>open</td>
|
|
33
|
+
<td>./tests/html/test_locators.html</td>
|
|
34
|
+
<td> </td>
|
|
35
|
+
</tr>
|
|
36
|
+
|
|
37
|
+
<!-- Explicit XPath location -->
|
|
38
|
+
<tr>
|
|
39
|
+
<td>verifyText</td>
|
|
40
|
+
<td>xpath=//a</td>
|
|
41
|
+
<td>this is the first element</td>
|
|
42
|
+
</tr>
|
|
43
|
+
<tr>
|
|
44
|
+
<td>verifyText</td>
|
|
45
|
+
<td>xpath=//a[@class='a2']</td>
|
|
46
|
+
<td>this is the second element</td>
|
|
47
|
+
</tr>
|
|
48
|
+
<tr>
|
|
49
|
+
<td>verifyText</td>
|
|
50
|
+
<td>xpath=//*[@class='a2']</td>
|
|
51
|
+
<td>this is the second element</td>
|
|
52
|
+
</tr>
|
|
53
|
+
<tr>
|
|
54
|
+
<td>verifyText</td>
|
|
55
|
+
<td>xpath=//a[2]</td>
|
|
56
|
+
<td>this is the second element</td>
|
|
57
|
+
</tr>
|
|
58
|
+
<tr>
|
|
59
|
+
<td>verifyElementNotPresent</td>
|
|
60
|
+
<td>xpath=//a[@href='foo']</td>
|
|
61
|
+
<td></td>
|
|
62
|
+
</tr>
|
|
63
|
+
<tr>
|
|
64
|
+
<td>verifyAttribute</td>
|
|
65
|
+
<td>xpath=//a[contains(@href,'#id1')]/@class</td>
|
|
66
|
+
<td>a1</td>
|
|
67
|
+
</tr>
|
|
68
|
+
<tr>
|
|
69
|
+
<td>verifyElementPresent</td>
|
|
70
|
+
<td>xpath=//a[text()="this is the second element"]</td>
|
|
71
|
+
<td> </td>
|
|
72
|
+
</tr>
|
|
73
|
+
|
|
74
|
+
<!-- Implicit XPath location -->
|
|
75
|
+
|
|
76
|
+
<tr>
|
|
77
|
+
<td>verifyText</td>
|
|
78
|
+
<td>//a</td>
|
|
79
|
+
<td>this is the first element</td>
|
|
80
|
+
</tr>
|
|
81
|
+
<tr>
|
|
82
|
+
<td>verifyAttribute</td>
|
|
83
|
+
<td>//a[contains(@href,'#id1')]/@class</td>
|
|
84
|
+
<td>a1</td>
|
|
85
|
+
</tr>
|
|
86
|
+
|
|
87
|
+
<!-- Funky XPath -->
|
|
88
|
+
|
|
89
|
+
<tr>
|
|
90
|
+
<td>verifyText</td>
|
|
91
|
+
<td>xpath=(//table[@class='stylee'])//th[text()='theHeaderText']/../td</td>
|
|
92
|
+
<td>theCellText</td>
|
|
93
|
+
</tr>
|
|
94
|
+
|
|
95
|
+
</tbody>
|
|
96
|
+
</table>
|
|
97
|
+
</body>
|
|
98
|
+
</html>
|