• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Selenium - turning results html into test report

 
Ranch Hand
Posts: 32
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm using Selenium to kick off some tests against a web app, via:

java -jar selenium-server.jar -multiwindow -htmlsuite "*firefox" "http://www.google.com" "testsuite.html" "testsuite-results.html"

This works fine, and I end up with a nicely formatted human-readable test report in testsuite-results.html

Has anyone attempted to turn this report into something more machine readable, that I could use as part of a nightly ant build for instance, to pick out and report on failing test cases? Or perhaps (for example, via an xslt transform) found a way to turn it into a JUnit TEST-blah.xml style report? Or found a way to get Selenium to produce reports in a more useful (for automated testing purposes) format?
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic