From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

$Selenium::Firefox::Binary::VERSION = '0.2652'; # TRIAL
# ABSTRACT: Subroutines for locating and properly initializing the Firefox Binary
use File::Which qw/which/;
require Exporter;
our @ISA = qw/Exporter/;
our @EXPORT_OK = qw/firefox_path setup_firefox_binary_env/;
sub _firefox_windows_path {
# TODO: make this slightly less dumb
my @program_files = (
$ENV{PROGRAMFILES} // 'C:\Program Files',
$ENV{'PROGRAMFILES(X86)'} // 'C:\Program Files (x86)',
);
foreach (@program_files) {
my $binary_path = $_ . '\Mozilla Firefox\firefox.exe';
return $binary_path if -x $binary_path;
}
# Fall back to a completely naive strategy
warn q/We couldn't find a viable firefox.EXE; you may want to specify it via the binary attribute./;
return which('firefox');
}
sub _firefox_darwin_path {
my $default_firefox = '/Applications/Firefox.app/Contents/MacOS/firefox-bin';
if (-e $default_firefox && -x $default_firefox) {
return $default_firefox
}
else {
return which('firefox-bin');
}
}
sub _firefox_unix_path {
# TODO: maybe which('firefox3'), which('firefox2') ?
return which('firefox') || '/usr/bin/firefox';
}
sub firefox_path {
my $path;
if ($^O eq 'MSWin32') {
$path =_firefox_windows_path();
}
elsif ($^O eq 'darwin') {
$path = _firefox_darwin_path();
}
else {
$path = _firefox_unix_path;
}
if (not -x $path) {
die $path . ' is not an executable file.';
}
return $path;
}
# We want the profile to persist to the end of the session, not just
# the end of this function.
my $profile;
sub setup_firefox_binary_env {
my ($port, $caller_profile) = @_;
$profile = $caller_profile || Selenium::Firefox::Profile->new;
$profile->add_webdriver($port);
$ENV{'XRE_PROFILE_PATH'} = $profile->_layout_on_disk;
$ENV{'MOZ_NO_REMOTE'} = '1'; # able to launch multiple instances
$ENV{'MOZ_CRASHREPORTER_DISABLE'} = '1'; # disable breakpad
$ENV{'NO_EM_RESTART'} = '1'; # prevent the binary from detaching from the console.log
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Selenium::Firefox::Binary - Subroutines for locating and properly initializing the Firefox Binary
=head1 VERSION
version 0.2652
=head1 SEE ALSO
Please see those modules/websites for more information related to this module.
=over 4
=item *
L<Selenium::Remote::Driver|Selenium::Remote::Driver>
=back
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=head1 AUTHORS
Current Maintainers:
=over 4
=item *
Daniel Gempesaw <gempesaw@gmail.com>
=item *
Emmanuel Peroumalnaïk <peroumalnaik.emmanuel@gmail.com>
=back
Previous maintainers:
=over 4
=item *
Luke Closs <cpan@5thplane.com>
=item *
Mark Stosberg <mark@stosberg.com>
=back
Original authors:
=over 4
=item *
Aditya Ivaturi <ivaturi@gmail.com>
=back
=head1 COPYRIGHT AND LICENSE
Copyright (c) 2010-2011 Aditya Ivaturi, Gordon Child
Copyright (c) 2014-2015 Daniel Gempesaw
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
=cut