def add_static_page_and_go_to_help_in_ss(self, text, placeholder):
     allStatPgs = StaticPagesCMS(self.driver, self.wait)
     staticPg = allStatPgs.clickAddStaticPage()
     staticPg.typeTitle(text)
     staticPg.typeContent(text)
     staticPg.selectPlaceholder(placeholder)
     staticPg.clickSaveAndContinueEditingButton()
     ssHelpPage = HelpPageSS(self.driver, self.wait)
     return ssHelpPage