pages/desktop/base.py [234:245]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        user = WebDriverWait(
            self.driver, 30, ignored_exceptions=StaleElementReferenceException
        ).until(
            EC.element_to_be_clickable(
                (
                    By.CSS_SELECTOR,
                    ".Header-authenticate-button",
                )
            )
        )
        action = ActionChains(self.driver)
        action.move_to_element(user)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



pages/desktop/base.py [268:279]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        user = WebDriverWait(
            self.driver, 30, ignored_exceptions=StaleElementReferenceException
        ).until(
            EC.element_to_be_clickable(
                (
                    By.CSS_SELECTOR,
                    ".Header-authenticate-button",
                )
            )
        )
        action = ActionChains(self.driver)
        action.move_to_element(user)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



