in reply to Carriage return in Selenium

If I understand you correctly:

print $driver->get_title() ."\n";

Or, more verbosely:

my $title = $driver->get_title; print "$title\n";

Replies are listed 'Best First'.
Re^2: Carriage return in Selenium
by AnomalousMonk (Archbishop) on May 13, 2016 at 14:16 UTC

    I would tend to think in terms of just another list item:
        print $driver->get_title(), "\n";
        print $driver->get_tootle(), "\n";
    Why bother to concatenate? (Update: Or do I simply misunderstand Chaoui05's original question?)


    Give a man a fish:  <%-{-{-{-<

      Thanks it's ok , it' works now
Re^2: Carriage return in Selenium
by Chaoui05 (Scribe) on May 13, 2016 at 14:16 UTC
    Many Thanks ! It works fine ! :)