[Wtr-general] Reporting suggestions?

Chong forum-watir-users at openqa.org
Fri Jul 6 13:24:30 EDT 2007


If you don't need the console output to be real-time, perhaps you could use the following as a launcher script?

IO.sync = true
out_file = File.new('test_output.log', 'w')
ret = `ruby test_main.rb`
$stdout << ret
out_file << ret
out_file.close


More information about the Wtr-general mailing list