1
0

Firefox.pm 522 B

1234567891011121314151617181920212223
  1. package Test::Selenium::Firefox;
  2. use Moo;
  3. extends 'Selenium::Firefox', 'Test::Selenium::Remote::Driver';
  4. 1;
  5. __END__
  6. =head1 NAME
  7. Test::Selenium::Firefox
  8. =head1 SYNOPSIS
  9. my $test_driver = Test::Selenium::Firefox->new;
  10. $test_driver->get_ok('https://duckduckgo.com', "Firefox can load page");
  11. $test_driver->quit();
  12. =head1 DESCRIPTION
  13. A subclass of L<Selenium::Firefox> which provides useful testing functions. Please see L<Selenium::Firefox> and L<Test::Selenium::Remote::Driver> for usage information.