chait1979
Newbie
Reged: 03/12/12
Posts: 10
|
|
Hi , I am new to selenium and created one test case with IDE and it executed successfully now i want to display it in Report that Test case is Pass , How to display it in selenium ? We are using eclips (Java)? Please suggest
|
Tarun_K
Advanced Member
Reged: 01/21/07
Posts: 646
Loc: Bangalore, India
|
|
If you are on Junit then you can use ant-junit report task to generate report -
http://ant.apache.org/manual/Tasks/junitreport.html
If on TestNG then it has built-in report after test execution is over.
-------------------- ~ Tarun
Free Selenium Training
|
tester_wasi
Newbie
Reged: 03/17/12
Posts: 19
|
|
If you make a test suite and save it as htm file u can use selenium server and use the following command.
<Selenium server location path>java -jar <selenium-server name>.jar –htmlSuite “*<browser_name>” “<URL of base website>” “<Path of html_suite>” “<Path to store reports.htm>”
hope so this may help u.
|