Firefox.pm 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. package Selenium::Firefox;
  2. # ABSTRACT: Use FirefoxDriver without a Selenium server
  3. use Moo;
  4. use Selenium::CanStartBinary::FindBinary qw/coerce_simple_binary coerce_firefox_binary/;
  5. extends 'Selenium::Remote::Driver';
  6. =head1 SYNOPSIS
  7. # these two are the same, and will only work with Firefox 48 and
  8. # greater
  9. my $driver = Selenium::Firefox->new;
  10. my $driver = Selenium::Firefox->new( marionette_enabled => 1 );
  11. # For Firefox 47 and older, disable marionette:
  12. my $driver = Selenium::Firefox->new( marionette_enabled => 0 );
  13. =head1 DESCRIPTION
  14. This class allows you to use the FirefoxDriver without needing the JRE
  15. or a selenium server running. Unlike starting up an instance of
  16. S::R::D, do not pass the C<remote_server_addr> and C<port> arguments,
  17. and we will search for the Firefox executable in your $PATH. We'll try
  18. to start the binary, connect to it, and shut it down at the end of the
  19. test.
  20. If the Firefox application is not found in the expected places, we'll
  21. fall back to the default L<Selenium::Remote::Driver> behavior of
  22. assuming defaults of 127.0.0.1:4444 after waiting a few seconds.
  23. If you specify a remote server address, or a port, our assumption is
  24. that you are doing standard S::R::D behavior and we will not attempt
  25. any binary startup.
  26. If you're curious whether your Selenium::Firefox instance is using a
  27. separate Firefox binary, or through the selenium server, you can check
  28. the value of the C<binary_mode> attr after instantiation.
  29. =cut
  30. has '+browser_name' => (
  31. is => 'ro',
  32. default => sub { 'firefox' }
  33. );
  34. =attr binary
  35. Optional: specify the path to the C<geckodriver> binary - this is NOT
  36. the path to the Firefox browser. To specify the path to your Firefox
  37. browser binary, see the L</firefox_binary> attr.
  38. For Firefox 48 and greater, this is the path to your C<geckodriver>
  39. executable. If you don't specify anything, we'll search for
  40. C<geckodriver> in your $PATH.
  41. For Firefox 47 and older, this attribute does not apply, because the
  42. older FF browsers do not use the separate driver binary startup.
  43. =cut
  44. has 'binary' => (
  45. is => 'lazy',
  46. coerce => \&coerce_simple_binary,
  47. default => sub { 'geckodriver' },
  48. predicate => 1
  49. );
  50. =attr binary_port
  51. Optional: specify the port that we should bind to. If you don't
  52. specify anything, we'll default to the driver's default port. Since
  53. there's no a priori guarantee that this will be an open port, this is
  54. _not_ necessarily the port that we end up using - if the port here is
  55. already bound, we'll search above it until we find an open one.
  56. See L<Selenium::CanStartBinary/port> for more details, and
  57. L<Selenium::Remote::Driver/port> after instantiation to see what the
  58. actual port turned out to be.
  59. =cut
  60. has 'binary_port' => (
  61. is => 'lazy',
  62. default => sub { 9090 }
  63. );
  64. =attr firefox_profile
  65. Optional: Pass in an instance of L<Selenium::Firefox::Profile>
  66. pre-configured as you please. The preferences you specify will be
  67. merged with the ones necessary for setting up webdriver, and as a
  68. result some options may be overwritten or ignored.
  69. my $profile = Selenium::Firefox::Profile->new;
  70. my $firefox = Selenium::Firefox->new(
  71. firefox_profile => $profile
  72. );
  73. =cut
  74. has '_binary_args' => (
  75. is => 'lazy',
  76. builder => sub {
  77. my ($self) = @_;
  78. if ( $self->marionette_enabled ) {
  79. my $args = ' --port ' . $self->port;
  80. $args .= ' --marionette-port ' . $self->marionette_binary_port;
  81. if ( $self->has_firefox_binary ) {
  82. $args .= ' --binary ' . $self->firefox_binary;
  83. }
  84. return $args;
  85. }
  86. else {
  87. return ' -no-remote';
  88. }
  89. }
  90. );
  91. has '+wd_context_prefix' => (
  92. is => 'ro',
  93. default => sub {
  94. my ($self) = @_;
  95. if ($self->marionette_enabled) {
  96. return '';
  97. }
  98. else {
  99. return '/hub';
  100. }
  101. }
  102. );
  103. =attr marionette_binary_port
  104. Optional: specify the port that we should bind marionette to. If you don't
  105. specify anything, we'll default to the marionette's default port. Since
  106. there's no a priori guarantee that this will be an open port, this is
  107. _not_ necessarily the port that we end up using - if the port here is
  108. already bound, we'll search above it until we find an open one.
  109. Selenium::Firefox->new(
  110. marionette_enabled => 1,
  111. marionette_binary_port => 12345,
  112. );
  113. Attempting to specify a C<marionette_binary_port> in conjunction with
  114. setting C<marionette_enabled> does not make sense and will most likely
  115. not do anything useful.
  116. =cut
  117. has 'marionette_binary_port' => (
  118. is => 'lazy',
  119. default => sub { 2828 }
  120. );
  121. =attr marionette_enabled
  122. Optional: specify whether
  123. L<marionette|https://developer.mozilla.org/en-US/docs/Mozilla/QA/Marionette>
  124. should be enabled or not. By default, marionette is enabled, which
  125. assumes you are running with Firefox 48 or newer. To use this module
  126. to start Firefox 47 or older, you must pass C<marionette_enabled =>
  127. 0>.
  128. my $ff48 = Selenium::Firefox->new( marionette_enabled => 1 ); # defaults to 1
  129. my $ff47 = Selenium::Firefox->new( marionette_enabled => 0 );
  130. =cut
  131. has 'marionette_enabled' => (
  132. is => 'lazy',
  133. default => 1
  134. );
  135. =attr firefox_binary
  136. Optional: specify the path to the Firefox browser executable. Although
  137. we will attempt to locate this in your $PATH, you may specify it
  138. explicitly here. Note that path here must point to a file that exists
  139. and is executable, or we will croak.
  140. For Firefox 48 and newer, this will be passed to C<geckodriver> such
  141. that it will attempt to start up the Firefox at the specified path.
  142. For Firefox 47 and older, this browser path will be the file that we
  143. directly start up.
  144. =cut
  145. has 'firefox_binary' => (
  146. is => 'lazy',
  147. coerce => \&coerce_firefox_binary,
  148. predicate => 1,
  149. default => sub { 'firefox' }
  150. );
  151. with 'Selenium::CanStartBinary';
  152. =attr custom_args
  153. Optional: specify any additional command line arguments you'd like
  154. invoked during the binary startup. See
  155. L<Selenium::CanStartBinary/custom_args> for more information.
  156. For Firefox 48 and newer, these arguments will be passed to
  157. geckodriver during start up.
  158. For Firefox 47 and older, these arguments will be passed to the
  159. Firefox browser during start up.
  160. =attr startup_timeout
  161. Optional: specify how long to wait for the binary to start itself and
  162. listen on its port. The default duration is arbitrarily 10 seconds. It
  163. accepts an integer number of seconds to wait: the following will wait
  164. up to 20 seconds:
  165. Selenium::Firefox->new( startup_timeout => 20 );
  166. See L<Selenium::CanStartBinary/startup_timeout> for more information.
  167. =cut
  168. 1;