Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Am I missing something obvious? The docos state that:

-htmlSuite    : Run a
    single HTML Selenese (Selenium Core) suite and then exit
    immediately ...

but my instance doesn't seem to (it also doesn't write to the html output either)

I am running : java -jar /opt/selenium-server-1.0.3/selenium-server.jar -debug -htmlSuite *googlechrome http://www.google.co.uk ~/tsg1.ts ~/g.out

I have also given up trying to put xml into this editor - but all I am doing is opening www.google.co.uk and looking for "about google" - which works fine in the firefox ide, but never exits on RC... Any ideas ?! The same happens with *firefox as well :-(

share|improve this question

2 Answers

up vote 2 down vote accepted

Ok - I dug around and found the following.

The selenium IDE generates an ERRONEOUS line in the "heading" which somehow breaks the -htmlsuite option (ie it never exits). Comment the line out as per this example : `

< table id="suiteTable" cellpadding="1" cellspacing="1" border="1" class="selenium" >

< tbody >

< !-- < tr >< td >< b > Test Suite< / b >< /td >< /tr > -- >

< tr >< td >< a href="test_case_google" >test_case_google< /a >< /td >< /tr >

< /tbody >< /table >

< /body >

< /html > `

share|improve this answer
I just ran across this issue, so thanks for the answer. I'm curious why this would break selenium though. I don't see anything wrong with this HTML. – Derek Greer Apr 10 at 15:27

Try with quotes:

java -jar /opt/selenium-server-1.0.3/selenium-server.jar -debug -htmlSuite '*googlechrome" "http://www.google.co.uk" "~/tsg1.ts" "~/g.out"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.