https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29565
--- Comment #1 from Jonathan Druart <[email protected]> --- Created attachment 127972 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=127972&action=edit Bug 29565: Prevent regressions.t to fail on slow boxes It's failing randomly on some Jenkins' nodes # Failed test 'Encoding in session variables' # at t/db_dependent/selenium/regressions.t line 300. Can't call method "get_text" on an undefined value at t/db_dependent/selenium/regressions.t line 285. It can be recreated locally with the following changes: @ t/lib/Selenium.pm:50 @ sub new { ); bless $self, $class; $self->add_error_handler; - $self->driver->set_implicit_wait_timeout(5000); + $self->driver->set_implicit_wait_timeout(1000); return $self; } @ t/lib/Selenium.pm:50 @ sub new { ); bless $self, $class; $self->add_error_handler; - $self->driver->set_implicit_wait_timeout(5000); + $self->driver->set_implicit_wait_timeout(1000); return $self; } This patch suggests to simply double the timeout. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
