diff --git a/common/test/acceptance/tests/lms/test_learner_profile.py b/common/test/acceptance/tests/lms/test_learner_profile.py index 40871cbbdf..5051d91552 100644 --- a/common/test/acceptance/tests/lms/test_learner_profile.py +++ b/common/test/acceptance/tests/lms/test_learner_profile.py @@ -9,7 +9,6 @@ from unittest import skip from common.test.acceptance.pages.common.auto_auth import AutoAuthPage from common.test.acceptance.pages.common.logout import LogoutPage from common.test.acceptance.pages.lms.account_settings import AccountSettingsPage -from common.test.acceptance.pages.lms.dashboard import DashboardPage from common.test.acceptance.pages.lms.learner_profile import LearnerProfilePage from common.test.acceptance.tests.helpers import AcceptanceTest, EventsTestMixin @@ -268,25 +267,6 @@ class OwnLearnerProfilePageTest(LearnerProfileTestMixin, AcceptanceTest): profile_page.wait_for_page() self.verify_profile_page_is_private(profile_page) - def test_dashboard_learner_profile_link(self): - """ - Scenario: Verify that my profile link is present on dashboard page and we can navigate to correct page. - - Given that I am a registered user. - When I go to Dashboard page. - And I click on username dropdown. - Then I see Profile link in the dropdown menu. - When I click on Profile link. - Then I will be navigated to Profile page. - """ - username, __ = self.log_in_as_unique_user() - dashboard_page = DashboardPage(self.browser) - dashboard_page.visit() - self.assertIn('Profile', dashboard_page.tabs_link_text) - dashboard_page.click_my_profile_link() - my_profile_page = LearnerProfilePage(self.browser, username) - my_profile_page.wait_for_page() - def test_fields_on_my_private_profile(self): """ Scenario: Verify that desired fields are shown when looking at her own private profile. diff --git a/lms/templates/header/navbar-authenticated.html b/lms/templates/header/navbar-authenticated.html index 5b2242e8e4..eaf9dd9ba3 100644 --- a/lms/templates/header/navbar-authenticated.html +++ b/lms/templates/header/navbar-authenticated.html @@ -51,12 +51,6 @@ from openedx.core.djangoapps.site_configuration import helpers as configuration_ % endif -
% endif % if show_explore_courses: % endif - % endif % endif