public PatientExperienceIFrame changeSystem(ReportFilter reportFilter) {
   this.accessPanelFrame();
   if (!this.systemSelect
       .getFirstSelectedOption()
       .getAttribute(appProps.getPE_ATTRIBUTE_NAME_VALUE())
       .equals(reportFilter.getSystem())) {
     return this.openChangeSystemPanel()
         .chooseSystem(reportFilter.getSystem(), null, null)
         .waitForElementsToLoad()
         .navigateToPatientExperienceTab()
         .waitForElementsToLoad();
   } else {
     return this;
   }
 }