Lines 54-59
my $AudioAlerts_value = C4::Context->preference('AudioAlerts');
Link Here
|
54 |
C4::Context->set_preference('AudioAlerts', '1'); |
54 |
C4::Context->set_preference('AudioAlerts', '1'); |
55 |
|
55 |
|
56 |
our @cleanup; |
56 |
our @cleanup; |
|
|
57 |
our $DT_delay = 1; |
57 |
subtest 'OPAC - borrowernumber, branchcode and categorycode as html attributes' => sub { |
58 |
subtest 'OPAC - borrowernumber, branchcode and categorycode as html attributes' => sub { |
58 |
plan tests => 3; |
59 |
plan tests => 3; |
59 |
|
60 |
|
Lines 317-322
subtest 'Encoding in session variables' => sub {
Link Here
|
317 |
$driver->find_element('//a[@id="issues-table-load-now-button"]') |
318 |
$driver->find_element('//a[@id="issues-table-load-now-button"]') |
318 |
->click; |
319 |
->click; |
319 |
|
320 |
|
|
|
321 |
sleep $DT_delay && $s->wait_for_ajax; |
322 |
|
320 |
my @tds = $driver->find_elements( |
323 |
my @tds = $driver->find_elements( |
321 |
'//table[@id="issues-table"]/tbody/tr[2]/td'); |
324 |
'//table[@id="issues-table"]/tbody/tr[2]/td'); |
322 |
|
325 |
|
323 |
- |
|
|