in reply to Re^7: Time elapsed with Selenium Test
in thread Time elapsed with Selenium Test

I'am coming back to you. Just to finish . If i have my "#" colored in beginning of my line. Something like :  cprintf ("#\x037browser chrome\x030\n"); #browser chrome (the ouput)

Is it ok for TAP ?

Thanks in advance !

Replies are listed 'Best First'.
Re^9: Time elapsed with Selenium Test
by Your Mother (Archbishop) on May 18, 2016 at 12:40 UTC

    Not to be a broken record but you should run your tests with regular TAP oriented modules using regular Test::* oriented tools like diag, note, both of which do the # safe output, and subtest, explain, etc. Selenium can be controlled from this and others: Test::WWW::Selenium. The more you customize your tests to use non-standard stuff, the more you tilt your suite toward future abandonment. Besides, it's easier. :P

Re^9: Time elapsed with Selenium Test
by soonix (Chancellor) on May 18, 2016 at 12:19 UTC
    Don't know what cprintf does different from printf. If the output lines start with "#" and not with some (possibly invisible) control character, all should be well.
Re^9: Time elapsed with Selenium Test
by Chaoui05 (Scribe) on May 18, 2016 at 12:50 UTC
    I can't reply for each comment so i do it here: Thanks