Download the Selenium RC from the following link
http://code.google.com/p/selenium/downloads/detail?name=selenium-remote-control-1.0.3.zip&can=2&q=
Create a folder called selenium and save the G_alltestff.html file and
then use the same path in the batch file C:
\selenium\G_alltestff.html.
I suggest you start writing the selenium script either in Java or C#.
You will have better control over the script and write your reports to
a text file. There are a couple of articles on how to work with
selenium rc in Java and C#.
create G_alltestff.html (For Firefox)
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
<title>Test Suite</title>
</head>
<table id="suiteTable" cellpadding="1"
cellspacing="1"
border="1"
class="selenium">
<tbody>
<tr><td><b>Test Suite</b></td></tr>
<tr><td><a href=".\Tests\Name of you
selenium script.html">Name of the Script</a></td></tr>
</tbody>
</table>
</body>
</html>
The batch file to call selenium rc is as under:
This is an example of the SeleniumFirefox.bat file.
cd
\ cd C:\selenium-remote-control-1.0-SNAPSHOT\selenium-server-1.0-
SNAPSHOT
java -jar selenium-server.jar -port 4545 -firefoxProfileTemplate C:
\Firefoxselenium -htmlSuite chrome
http://www.yourtestwebsite.com// C:
\selenium\G_alltestff.html* C:\selenium\*Results.html*
pause
Also check this doc -
https://docs.google.com/Doc?docid=0Aa63T0zKfD3hZGczOHZyZ181OGRrZ2hmd2Zx&hl=en
On Feb 8, 3:21 pm, srinivas katikireddy <
srinivasonselen...@gmail.com>
wrote: