- rishabhg
- Posts : 2
Join date : 2013-11-11
Where does selenium script pick browser from
Mon Nov 11, 2013 6:41 pm
I am using Windows and I have a perl based selenium script with the following statement :
$sel = Test::WWW::Selenium->new( host => "localhost",
port => 4444,
browser => "*chrome",
browser_url => $ARGV[0]/" );
So, I need the firfox browser to open up a custom profile. To do that i have configured a firefox shortcut with the -P "profilename" appended to target. Now how do i make Selenium open the firefox browser using the custom firefox shortcut. Is there an environment variable that i can set up to include the path of the custom shortcut to ensure that the browser thrown by my Selenium script uses the firefox profile that i need.
P.S. I cannot change the call to Test::WWW::Selenium->new to include the absolute URL of the browser.
$sel = Test::WWW::Selenium->new( host => "localhost",
port => 4444,
browser => "*chrome",
browser_url => $ARGV[0]/" );
So, I need the firfox browser to open up a custom profile. To do that i have configured a firefox shortcut with the -P "profilename" appended to target. Now how do i make Selenium open the firefox browser using the custom firefox shortcut. Is there an environment variable that i can set up to include the path of the custom shortcut to ensure that the browser thrown by my Selenium script uses the firefox profile that i need.
P.S. I cannot change the call to Test::WWW::Selenium->new to include the absolute URL of the browser.
Re: Where does selenium script pick browser from
Tue Dec 06, 2016 1:52 pm
i am facing the run the script at local host, how can i resolve it .
Re: Where does selenium script pick browser from
Tue Jan 08, 2019 8:13 pm
Using selenium script with chrome and Firefox browsers are same
here syntax's for firefox browser is
Profile page opener in Firefox
here syntax's for firefox browser is
- Code:
my $driver = Selenium::Firefox->new;
$driver = Selenium::Firefox->new( marionette_enabled => 1 );
#Do stuff...
$driver->shutdown_binary;
# For Firefox 47 and older, disable marionette:
$driver = Selenium::Firefox->new( marionette_enabled => 0 );
$driver->shutdown_binary;
Profile page opener in Firefox
- Code:
my $profile = Selenium::Firefox::Profile->new;
my $firefox = Selenium::Firefox->new(
firefox_profile => $profile
);
- Selenium.SeleniumException : Failed to start new browser session: Error while launching browser
- how to run the selenium script on the custom browser that the core is IE
- Selenium script interruption if no click on browser
- When I run the selenium RC script, I am getting Failed to start new browser, Firefox 3 could not be found in the path!
- Unable to start script execution in IE browser it is showing IE Script Error with 'Yes' or 'No' buttons for Continue script execution or no.
Permissions in this forum:
You cannot reply to topics in this forum