Lines 76-82
SKIP: {
Link Here
|
76 |
$s->click( { href => '/admin/admin-home.pl', main => 'container-main' } ) |
76 |
$s->click( { href => '/admin/admin-home.pl', main => 'container-main' } ) |
77 |
; # Koha administration |
77 |
; # Koha administration |
78 |
$s->click( { href => '/admin/smart-rules.pl', main_class => 'main container-fluid' } ) |
78 |
$s->click( { href => '/admin/smart-rules.pl', main_class => 'main container-fluid' } ) |
79 |
; # Circulation and fines rules |
79 |
; # Circulation and fine rules |
80 |
my $elt = $driver->find_element('//tr[@id="edit_row"]/td/select[@id="matrixitemtype"]/option[@value="'.$itype->itemtype.'"]'); |
80 |
my $elt = $driver->find_element('//tr[@id="edit_row"]/td/select[@id="matrixitemtype"]/option[@value="'.$itype->itemtype.'"]'); |
81 |
is( $elt->get_text(),$itype->description,"Our new itemtype is in the list"); |
81 |
is( $elt->get_text(),$itype->description,"Our new itemtype is in the list"); |
82 |
$elt->click(); |
82 |
$elt->click(); |
83 |
- |
|
|