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