Skip to content

Commit

Permalink
[24.1] Fix invocation grid selenium that fails intermittently
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedhamidawan committed Aug 24, 2024
1 parent 0cdf31e commit d7afcb0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/galaxy_test/selenium/test_invocation_grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ def test_grid(self):
invocations=30,
)
gx_selenium_context.navigate_to_invocations()
invocations = gx_selenium_context.components.invocations
invocations.invocations_table.wait_for_visible()

# shows a maximum of 25 invocations per page
self._assert_showing_n_invocations(25)
invocations = gx_selenium_context.components.invocations
invocations.pager.wait_for_visible()
self.screenshot("invocations_paginated_first_page")
self._next_page(invocations)
Expand Down

0 comments on commit d7afcb0

Please sign in to comment.