I have a perl based selenium script with the following statement :
$sel = Test::WWW::Selenium->new( host => "localhost",
port => 4444,
browser => "*chrome",
browser_url => "https://$ARGV[0]/" );
This throws up the Firefox browser. I want that when the Firefox browser is thrown up it is configured to use my proxy namely 127.0.0.1:8080 where I have a proxy service already started. How can I accomplish this without making any changes to the above shown code?