in pages/desktop/frontend/users.py [0:0]
def link_to_fxa_account(self):
self.wait.until(EC.element_to_be_clickable(self._fxa_account_link_locator))
self.find_element(*self._fxa_account_link_locator).click()
# waits for the fxa account page to be opened - check logo visibility
self.wait.until(
EC.visibility_of_element_located((By.CSS_SELECTOR, ".flex h1 span"))
)