I have a test suite with 3 test cases, out of which first test case has all the variables required in the other 2 test cases(something like its a dataset for the test suite)
All this while i was executing testsuites in selenium IDE (Manually loading the test suite in IDE and then run), everything was fine.
But i wanted a report for the test case execution, so now i am using below command to execute the testsuite
java -jar "selenium-server jar path" -htmlSuite "*firefox" "baseurl" "TestSuite path" "Results file Path"
Now the Problem is while executing the test suite from the command propmt,
variables stored in the First testcase, not considered in the 2nd test case and so on.
So can anybody help me to solve this issue.
– anil Jul 21 '11 at 09:54