Firefox.pm 7.2 KB

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