Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
foreach $line(@h_list)
{
my $request = new HTTP::Request GET => $line;
my $response = $robot->request( $request );
$html_source_code = $response->content . "\n";
while( $html_source_code =~ /(<td>\d+\ \;\ \;\ \;<\/td>)/g ) {
push @clean_list, $1;
}
}