@@ -, +, @@ randomly --- t/db_dependent/selenium/administration_tasks.t | 5 +++++ 1 file changed, 5 insertions(+) --- a/t/db_dependent/selenium/administration_tasks.t +++ a/t/db_dependent/selenium/administration_tasks.t @@ -184,6 +184,11 @@ SKIP: { }; { # Patron categories + # For an unknown reason the click on the admin-home link does not work + # At this point we were still on the authorised value list view. + # A workaround (and dirty fix) is to logout/login and see if it fixes the problem + $driver->get( $mainpage . q|?logout.x=1| ); + $s->auth; $driver->get($mainpage); $s->click( { href => '/admin/admin-home.pl', main => 'container-main' } ); # Koha administration $s->click( { href => '/admin/categories.pl', main_class => 'main container-fluid' } ); # Patron categories --