File Coverage

blib/lib/Selenium/Remote/Driver/CanSetWebdriverContext.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::Remote::Driver::CanSetWebdriverContext;
2             $Selenium::Remote::Driver::CanSetWebdriverContext::VERSION = '1.47';
3             # ABSTRACT: Customize the webdriver context prefix for various drivers
4              
5 16     16   100906 use strict;
  16         34  
  16         462  
6 16     16   79 use warnings;
  16         1056  
  16         362  
7              
8 16     16   91 use Moo::Role;
  16         33  
  16         88  
9              
10              
11             has 'wd_context_prefix' => (
12             is => 'lazy',
13             default => sub { '/wd/hub' }
14             );
15              
16             1;
17              
18             __END__