diff --git a/client/src/components/Masthead/Masthead.test.js b/client/src/components/Masthead/Masthead.test.js index 445cc235e9b9..f299b5b2500f 100644 --- a/client/src/components/Masthead/Masthead.test.js +++ b/client/src/components/Masthead/Masthead.test.js @@ -52,7 +52,7 @@ describe("Masthead.vue", () => { }); it("should render simple tab item links", () => { - expect(wrapper.findAll("li.nav-item").length).toBe(5); + expect(wrapper.findAll("li.nav-item").length).toBe(4); // Ensure specified link title respected. expect(wrapper.find("#help").text()).toBe("Support, Contact, and Community"); expect(wrapper.find("#help a").attributes("href")).toBe("/about"); diff --git a/client/src/components/Masthead/Masthead.vue b/client/src/components/Masthead/Masthead.vue index 1e166a469a03..d8738c1bb58d 100644 --- a/client/src/components/Masthead/Masthead.vue +++ b/client/src/components/Masthead/Masthead.vue @@ -86,7 +86,6 @@ onMounted(() => { - li > a > .fa-sign-out-alt' logged_in_only: '.loggedin-only' @@ -1008,6 +1007,7 @@ libraries: selectors: _: '#libraries_list' + activity: '#activity-libraries' create_new_library_btn: '#create-new-lib' permission_library_btn: '.permission_library_btn' toolbtn_save_permissions: '.toolbtn_save_permissions' diff --git a/config/plugins/tours/core.galaxy_ui.yaml b/config/plugins/tours/core.galaxy_ui.yaml index 6eb0a7961701..eb950864e7a7 100644 --- a/config/plugins/tours/core.galaxy_ui.yaml +++ b/config/plugins/tours/core.galaxy_ui.yaml @@ -122,10 +122,6 @@ steps: element: "#analysis" intro: "This is the current view. Start your Analysis from here." - - title: "Data Libraries" - component: masthead.libraries - intro: "Get access to source data." - - title: "Workflow" component: workflows.activity intro: "Create, manage, import, export and share your Workflows." diff --git a/lib/galaxy/selenium/navigates_galaxy.py b/lib/galaxy/selenium/navigates_galaxy.py index 4fefd36a282a..95e70392029c 100644 --- a/lib/galaxy/selenium/navigates_galaxy.py +++ b/lib/galaxy/selenium/navigates_galaxy.py @@ -1323,7 +1323,7 @@ def create_new_library(self): def libraries_open(self): self.home() - self.components.masthead.libraries.wait_for_and_click() + self.components.libraries.activity.wait_for_and_click() self.components.libraries.selector.wait_for_visible() def libraries_open_with_name(self, name):