Warning
This document is for an old release of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.
Source code for galaxy_test.selenium.test_invocation_grid
from galaxy_test.base.workflow_fixtures import WORKFLOW_RENAME_ON_INPUT
from .framework import (
retry_assertion_during_transitions,
selenium_test,
SeleniumTestCase,
TestsGalaxyPagers,
)
[docs]class TestInvocationGridSelenium(SeleniumTestCase, TestsGalaxyPagers):
ensure_registered = True
[docs] @selenium_test
def test_grid(self):
gx_selenium_context = self
history_id = gx_selenium_context.dataset_populator.new_history()
gx_selenium_context.workflow_populator.run_workflow(
WORKFLOW_RENAME_ON_INPUT,
history_id=history_id,
assert_ok=True,
wait=True,
invocations=2,
)
gx_selenium_context.navigate_to_invocations()
self._assert_showing_n_invocations(2)
# by default the pager only appears when there are too many invocations
# for one page - so verify it is absent and then swap to showing just
# one invocation per page.
invocations = gx_selenium_context.components.invocations
invocations.pager.wait_for_absent_or_hidden()
self.re_get_with_query_params("rows_per_page=1")
self._assert_showing_n_invocations(1)
invocations.pager.wait_for_visible()
self.screenshot("invocations_paginated_first_page")
self._next_page(invocations)
self._assert_current_page_is(invocations, 2)
self.screenshot("invocations_paginated_next_page")
self._previous_page(invocations)
self._assert_current_page_is(invocations, 1)
self._last_page(invocations)
self._assert_current_page_is(invocations, 2)
self.screenshot("invocations_paginated_last_page")
self._first_page(invocations)
self._assert_current_page_is(invocations, 1)
@retry_assertion_during_transitions
def _assert_showing_n_invocations(self, n):
assert len(self.invocation_index_table_elements()) == n