Help for this page

Select Code to Download


  1. or download this
    my $filename = "screenshot.png";
    $driver->capture_screenshot($filename);
    
  2. or download this
    my $path = "C:/Users/user1/Documents/TESTPERL";
    $driver->capture_screenshot("$path/Website-$url.png");
    
  3. or download this
    C:\Users\user1\Documents\TESTPERL>perl TEST7.pl
    Processing https://www.tricentis.com/
    ...
    Processing https://github.com/mozilla/geckodriver/releases
    binmode() on closed filehandle $fh at C:/Strawberry/perl/site/lib/Sele
    +nium/Remote/Driver.pm line 1014.
    print() on closed filehandle $fh at C:/Strawberry/perl/site/lib/Seleni
    +um/Remote/Driver.pm line 1015.
    
  4. or download this
    #!/usr/bin/perl
    use strict;
    ...
        $driver->capture_screenshot("$path/Website-$url.png");
        $driver->pause(2000);
    }