def user_profile_icon()

in pages/desktop/developers/devhub_home.py [0:0]


    def user_profile_icon(self):
        # get the 'alt' attribute to determine if img is uploaded by the user and is not the default avatar
        self.wait_for_element_to_be_displayed(self._user_profile_picture_locator)
        return self.find_element(*self._user_profile_picture_locator).get_attribute(
            "alt"
        )