def log_in_as_unique_user(self):
     """
     Create a unique user and return the account's username and id.
     """
     username = "******".format(uuid=self.unique_id[0:6])
     auto_auth_page = AutoAuthPage(self.browser, username=username).visit()
     user_id = auto_auth_page.get_user_id()
     return username, user_id
 def log_in_as_unique_user(self):
     """
     Create a unique user and return the account's username and id.
     """
     username = "******".format(uuid=self.unique_id[0:6])
     auto_auth_page = AutoAuthPage(self.browser, username=username).visit()
     user_id = auto_auth_page.get_user_id()
     return username, user_id
 def log_in_as_unique_user(self, email=None, full_name=None, password=None):
     """
     Create a unique user and return the account's username and id.
     """
     username = "******".format(uuid=self.unique_id[0:6])
     auto_auth_page = AutoAuthPage(self.browser,
                                   username=username,
                                   email=email,
                                   full_name=full_name,
                                   password=password).visit()
     user_id = auto_auth_page.get_user_id()
     return username, user_id
 def log_in_as_unique_user(self, email=None, full_name=None, password=None):
     """
     Create a unique user and return the account's username and id.
     """
     username = "******".format(uuid=self.unique_id[0:6])
     auto_auth_page = AutoAuthPage(
         self.browser,
         username=username,
         email=email,
         full_name=full_name,
         password=password
     ).visit()
     user_id = auto_auth_page.get_user_id()
     return username, user_id