http://www.perlmonks.org?node_id=1004740


in reply to Re: Perl and Selenium Grid 2 - Redirecting STDOUT not working how I need it to. (or die)
in thread Perl and Selenium Grid 2 - Redirecting STDOUT not working how I need it to.

Thank you for the response. I added the code you suggested and didn't get any errors. The 'print' command gets written to each file but the results of the following Selenium tests do not which suggests they are output by something other than STDOUT ?
  • Comment on Re^2: Perl and Selenium Grid 2 - Redirecting STDOUT not working how I need it to. (or die)

Replies are listed 'Best First'.
Re^3: Perl and Selenium Grid 2 - Redirecting STDOUT not working how I need it to. (or die)
by tye (Sage) on Nov 20, 2012 at 15:41 UTC

    The most likely "something other than STDOUT" would be STDERR. So redirect that. Or read the documentation (or code) of tools that aren't writing to STDOUT?

    - tye