diff --git a/client/src/utils/navigation/navigation.yml b/client/src/utils/navigation/navigation.yml index 69e06bdb21e3..564d617903d3 100644 --- a/client/src/utils/navigation/navigation.yml +++ b/client/src/utils/navigation/navigation.yml @@ -374,6 +374,7 @@ edit_collection_attributes: tool_panel: selectors: + tool_box: '[data-description="panel toolbox"]' tool_link: 'a[href$$="tool_runner?tool_id=${tool_id}"]' outer_tool_link: '.toolTitle a[href$$="tool_runner?tool_id=${tool_id}"]' data_source_tool_link: 'a[href$$="tool_runner/data_source_redirect?tool_id=${tool_id}"]' diff --git a/test/integration_selenium/test_toolbox_filters.py b/test/integration_selenium/test_toolbox_filters.py index 2c61729c0d0e..f23c6342c041 100644 --- a/test/integration_selenium/test_toolbox_filters.py +++ b/test/integration_selenium/test_toolbox_filters.py @@ -26,6 +26,7 @@ def test_toolbox_filters(self): the specified section is no longer displayed in the browser. """ self.register() + self.components.tool_panel.tool_box.wait_for_visible() # The tool panel section should be visible and clickable at this stage section = self.driver.find_element(By.LINK_TEXT, "Test Section") self.action_chains().move_to_element(section).click().perform() @@ -41,6 +42,7 @@ def test_toolbox_filters(self): self.components.toolbox_filters.submit.wait_for_and_click() self.sleep_for(self.wait_types.UX_RENDER) self.home() + self.components.tool_panel.tool_box.wait_for_visible() # But now it should raise NoSuchElementException with self.assertRaises(NoSuchElementException): self.driver.find_element(By.LINK_TEXT, "Test Section")