Bug 35556: Fix random selenium failure if category on second page

If 'Test category' if on the second page the test will fail to
locate the Edit button.

To make sure it is displayed on the screen we are selecting "All" in the
dropdown list.

This is done a couple of lines later in the script for the same purpose.

Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
(cherry picked from commit 6f45fd4574)
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
This commit is contained in:
Jonathan Druart 2023-12-12 16:14:34 +01:00 committed by Fridolin Somers
parent a4a2d02d3c
commit 46e66414a7

View file

@ -198,6 +198,9 @@ SKIP: {
$s->fill_form( { categorycode => $category_code, description => 'Test category', enrolmentperiod => 12, category_type => 'A' } );
$s->submit_form;
# Select "Show all" in the datatable "Show x entries" dropdown list to make sure our category is not hidden
$s->show_all_entries('//div[@id="patron_categories_wrapper"]');
$s->click(
{
href => '/admin/categories.pl?op=add_form&categorycode=' . $category_code,