Help for this page

Select Code to Download


  1. or download this
    retry(
          sub {
               $browser->get( $link->url() );
              }
         );
    
  2. or download this
    sub retry {
        my $sub_ref = shift;
    ...
    
        if ($@) { die "failed after " . $conf->max_tries() . " tries: $@\n
    +" }
    }