File Coverage

blib/lib/Test/Selenium/InternetExplorer.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::InternetExplorer;
2             $Test::Selenium::InternetExplorer::VERSION = '1.49';
3 1     1   478 use Moo;
  1         8  
  1         7  
4             extends 'Selenium::InternetExplorer', '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__