@Override
 protected AnnualAdditionalAttachmentsTab navigateToAdditionalAttachmentsTab() {
   HomePage homePage = openHomePage(getDataSet().getCoordinatorLogin(), getCtepProvider());
   BrowseInvestigatorsPage investigatorsPage = homePage.getInvestigatorsMenu().click();
   InvestigatorProfile profile = getDataSet().getInvestigator().getInvestigatorRole().getProfile();
   InvestigatorListing investigatorListing =
       investigatorsPage.getHelper().getInvestigatorListing(profile);
   BrowseAnnualRegistrationsPage browseRegistrationsPage =
       investigatorListing.clickAnnualRegistrations();
   return (AnnualAdditionalAttachmentsTab)
       browseRegistrationsPage
           .getHelper()
           .getFormListing(getDataSet().getAnnualRegistration().getAdditionalAttachmentsForm())
           .clickFormLink();
 }