File Coverage

blib/lib/Selenium/InternetExplorer.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Selenium::InternetExplorer;
2             $Selenium::InternetExplorer::VERSION = '1.47';
3 1     1   388 use strict;
  1         2  
  1         33  
4 1     1   4 use warnings;
  1         2  
  1         20  
5              
6             # ABSTRACT: A convenience package for creating a IE instance
7 1     1   4 use Moo;
  1         2  
  1         3  
8             extends 'Selenium::Remote::Driver';
9              
10              
11             has '+browser_name' => (
12             is => 'ro',
13             default => sub { 'internet_explorer' }
14             );
15              
16             has '+platform' => (
17             is => 'ro',
18             default => sub { 'WINDOWS' }
19             );
20              
21              
22             1;
23              
24             __END__