def open_history_menu()

in foxpuppet/windows/browser/panel_ui/panel_ui.py [0:0]


    def open_history_menu(self) -> None:
        """
        Opens the History in Panel UI Menu
        """
        with self.selenium.context(self.selenium.CONTEXT_CHROME):
            self.selenium.find_element(*PanelUILocators.HISTORY).click()
            self.wait.until(
                lambda _: self.selenium.find_element(
                    *PanelUILocators.PANEL_HISTORY
                ).is_displayed(),
                message="History menu did not open",
            )