from base.base_page import BasePage from elements.group_report_elements import GroupReportElements from selenium.common.exceptions import TimeoutException class GroupReportPage(BasePage): """ 组别报告页面 """ # 页面元素 es = GroupReportElements def __init__(self, driver): super().__init__(driver) try: self.driver.switch_to.default_content() self.switch_iframe(self.es.this_iframe) except: pass