Lines 41-46
use C4::Biblio qw( AddBiblio ); # We shouldn't use it
Link Here
|
41 |
use Test::More tests => 20; |
41 |
use Test::More tests => 20; |
42 |
use MARC::Record; |
42 |
use MARC::Record; |
43 |
use MARC::Field; |
43 |
use MARC::Field; |
|
|
44 |
use Try::Tiny; |
44 |
|
45 |
|
45 |
use t::lib::Selenium; |
46 |
use t::lib::Selenium; |
46 |
|
47 |
|
Lines 85-93
SKIP: {
Link Here
|
85 |
|
86 |
|
86 |
$cleanup_needed = 1; |
87 |
$cleanup_needed = 1; |
87 |
|
88 |
|
88 |
open my $fh, '>>', '/tmp/output.txt'; |
89 |
my $s; |
|
|
90 |
try { |
91 |
$s = t::lib::Selenium->new; |
92 |
} catch { |
93 |
skip "Unable to create selenium driver link. Please review https://wiki.koha-community.org/wiki/Using_Selenium_with_Koha", 20; |
94 |
}; |
89 |
|
95 |
|
90 |
my $s = t::lib::Selenium->new; |
96 |
open my $fh, '>>', '/tmp/output.txt'; |
91 |
|
97 |
|
92 |
my $driver = $s->driver; |
98 |
my $driver = $s->driver; |
93 |
my $base_url = $s->base_url; |
99 |
my $base_url = $s->base_url; |
94 |
- |
|
|