summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/selenium/index.html
diff options
context:
space:
mode:
authorwei <>2005-12-10 11:49:29 +0000
committerwei <>2005-12-10 11:49:29 +0000
commit98215a603fb798cdb4178e49061977544aaa45b7 (patch)
tree282787037961f7466acbd174ce151cac6de71273 /tests/FunctionalTests/selenium/index.html
parent25f9c45261aafd65477ad526e0b6ad3dca80803a (diff)
Initial import selenium functional test framework.
Diffstat (limited to 'tests/FunctionalTests/selenium/index.html')
-rw-r--r--tests/FunctionalTests/selenium/index.html60
1 files changed, 60 insertions, 0 deletions
diff --git a/tests/FunctionalTests/selenium/index.html b/tests/FunctionalTests/selenium/index.html
new file mode 100644
index 00000000..eaaaa308
--- /dev/null
+++ b/tests/FunctionalTests/selenium/index.html
@@ -0,0 +1,60 @@
+<html>
+<head>
+<title>Selenium starting points</title>
+<script language="Javascript">
+function fixUnitTestLink() {
+ baseurl = document.location + "";
+ baseurl = baseurl.replace(/[^\/]*$/, '');
+ jsunitLink = document.getElementById("unitTestLink");
+ jsunitLink['href'] = jsunitLink['href'].replace('BASEURL', baseurl);
+}
+</script>
+<style>
+li { margin-top: 6pt; }
+</style>
+</head>
+<body onload="fixUnitTestLink();">
+
+<h1>Selenium</h1>
+
+<p>
+<b>Acceptance tests:</b> These test-suites demonstrate/exercise the
+functionality of Selenium.
+</p>
+
+<ul>
+
+ <li>
+ <a href="TestRunner.html">Mozilla/Firefox TestSuite</a> - tests that currently pass on Firefox
+ </li>
+ <li>
+ <a href="TestRunner.html?test=tests/TestSuite-InternetExplorer.html">Internet Explorer TestSuite</a> - tests that currently pass on IE
+ </li>
+ <li>
+ <a href="TestRunner.html?test=tests/TestSuite-Konqueror.html">Konqueror TestSuite</a> - tests that currently pass on Konqueror
+ </li>
+ <li>
+ <a href="TestRunner.html?test=tests/TestSuite-Safari.html">Safari TestSuite</a> - tests that currently pass on Safari
+ </li>
+ <li>
+ <a href="TestRunner.html?test=devtests/TestSuite.html"><i>devtests</i></a>
+ - experimental features
+ </li>
+ <li>
+ <a href="TestRunner.html?test=tests/ErrorCheckingTestSuite.html">Error Checking TestSuite</a> - tests for the error verification commands
+ </li>
+</ul>
+
+<p><b>Unit-tests:</b> Use JsUnit to test Selenium internals.</p>
+
+<ul>
+
+ <li>
+ <a id="unitTestLink" href="jsunit/testRunner.html?testPage=BASEURLtests/JsUnitSuite.html">BrowserBot unit-tests</a>
+ <br />
+ </li>
+
+</ul>
+
+</body>
+</html>