Chrome.pm 515 B

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