File Coverage

blib/lib/Test/Selenium/PhantomJS.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Test::Selenium::PhantomJS;
2             $Test::Selenium::PhantomJS::VERSION = '1.47';
3 1     1   392 use Moo;
  1         2  
  1         6  
4             extends 'Selenium::PhantomJS', 'Test::Selenium::Remote::Driver';
5              
6             has 'webelement_class' => (
7             is => 'rw',
8             default => sub { 'Test::Selenium::Remote::WebElement' },
9             );
10              
11             1;
12              
13             __END__