| 1 |
583 |
dhwang |
<!-- |
| 2 |
|
|
/* |
| 3 |
|
|
* Modified by TIBCO Software Inc., © 2007 |
| 4 |
|
|
* TIBCO General Interface Test Automation Kit (GITAK) 0.8 |
| 5 |
|
|
*/ |
| 6 |
|
|
--> |
| 7 |
|
|
<!-- |
| 8 |
|
|
Copyright 2004 ThoughtWorks, Inc |
| 9 |
|
|
|
| 10 |
|
|
Licensed under the Apache License, Version 2.0 (the "License"); |
| 11 |
|
|
you may not use this file except in compliance with the License. |
| 12 |
|
|
You may obtain a copy of the License at |
| 13 |
|
|
|
| 14 |
|
|
http://www.apache.org/licenses/LICENSE-2.0 |
| 15 |
|
|
|
| 16 |
|
|
Unless required by applicable law or agreed to in writing, software |
| 17 |
|
|
distributed under the License is distributed on an "AS IS" BASIS, |
| 18 |
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 |
|
|
See the License for the specific language governing permissions and |
| 20 |
|
|
limitations under the License. |
| 21 |
|
|
--> |
| 22 |
|
|
<html> |
| 23 |
|
|
<head> |
| 24 |
|
|
<title>Selenium starting points</title> |
| 25 |
|
|
<script language="Javascript"> |
| 26 |
|
|
function fixUnitTestLinks() |
| 27 |
|
|
{ |
| 28 |
|
|
var baseurl = document.location + ""; |
| 29 |
|
|
baseurl = baseurl.replace(/[^\/]*$/, ''); |
| 30 |
|
|
var links = document.getElementsByTagName("a"); |
| 31 |
|
|
for (var i = 0; i < links.length; i++) { |
| 32 |
|
|
var link = links[i]; |
| 33 |
|
|
if (link.className == 'jsUnitSuite') { |
| 34 |
|
|
link['href'] = link['href'].replace('BASEURL', baseurl); |
| 35 |
|
|
} |
| 36 |
|
|
} |
| 37 |
|
|
} |
| 38 |
|
|
</script> |
| 39 |
|
|
<style> |
| 40 |
|
|
li { margin-top: 6pt; } |
| 41 |
|
|
</style> |
| 42 |
|
|
</head> |
| 43 |
|
|
<body onload="fixUnitTestLinks();"> |
| 44 |
|
|
<h1>TIBCO General Interface™ Test Automation Kit |
| 45 |
|
|
</h1> |
| 46 |
|
|
|
| 47 |
|
|
<ul> |
| 48 |
|
|
<li> |
| 49 |
|
|
<a href="core/TestRunner.html?test=../gi/tests/gi32/TestSuite.html">General Interface 3.2/3.3 TestSuite</a> (Remember to edit "gi/tests/gi32/testSetup.html with proper path for GI home path)</li><li> |
| 50 |
|
|
<a href="core/TestRunner.html?test=../gi/tests/gi34/TestSuite.html">General Interface 3.4/3.5 TestSuite</a> (Remember to edit "gi/tests/gi34/testSetup.html with proper path for GI home path)</li><li> |
| 51 |
|
|
|
| 52 |
|
|
<a href="gi/doc/tib_gitak_selenium_extension_reference.html">GI Extension Reference</a> - |
| 53 |
|
|
extended assert/action commands and locators reference documents. |
| 54 |
|
|
</li> |
| 55 |
|
|
</ul> |
| 56 |
|
|
|
| 57 |
|
|
<h2>Selenium</h2> |
| 58 |
|
|
<p> |
| 59 |
|
|
<a href="core/TestRunner.html">Selenium TestRunner</a> - Select a test suite to run in Selenium |
| 60 |
|
|
</p> |
| 61 |
|
|
<p> |
| 62 |
|
|
<a href="reference.html">Selenium Reference</a> Document |
| 63 |
|
|
</p> |
| 64 |
|
|
|
| 65 |
|
|
<p> |
| 66 |
|
|
<b>Acceptance tests:</b> These test-suites demonstrate/exercise the |
| 67 |
|
|
functionality of Selenium. |
| 68 |
|
|
</p> |
| 69 |
|
|
|
| 70 |
|
|
<ul> |
| 71 |
|
|
<li> |
| 72 |
|
|
<a href="core/TestRunner.html?test=../tests/TestSuite.html">Selenium TestSuite</a> - functional tests for Selenium. This suite of tests should pass in any supported browser. |
| 73 |
|
|
</li> |
| 74 |
|
|
<li> |
| 75 |
|
|
<a href="core/TestRunner.html?test=../tests/ErrorCheckingTestSuite.html">Error Checking TestSuite</a> - tests for the error verification commands |
| 76 |
|
|
</li> |
| 77 |
|
|
<li> |
| 78 |
|
|
<a href="core/TestRunner.html?test=../tests/DogfoodTestSuite.html&multiWindow=true">Dogfood TestSuite</a> - test Selenium with Selenium |
| 79 |
|
|
</li> |
| 80 |
|
|
</ul> |
| 81 |
|
|
|
| 82 |
|
|
|
| 83 |
|
|
</body> |
| 84 |
|
|
</html> |