#!/usr/bin/perl use strict; use warnings; use WWW::Mechanize::Firefox; my $mech = WWW::Mechanize::Firefox->new(); $mech->get('https://openbook.etoro.com/Dellos/overview/'); print $mech->content(); exit;