Exemple #1
0
    def test_copy_credential(self):
        '''
        Test to confirm that we are copying the password  from a found credential
        '''

        self.new_credential.save_credentials()
        Credentials.copy_credential("Youtube")

        self.assertEqual(self.new_credential.account, pyperclip.paste())
    def test_copy_credential(self):
        '''
        test to confirm we are copying the credentials
        '''
        self.new_credentials.save_credentials()
        facebook = Credentials('facebook', 'bowjoe', 'testpass')
        facebook.save_credentials()
        find_credential = None

        for credentials in Credentials.credential_list:
            find_credential = Credentials.find_by_appName(credentials.appName)
            return pyperclip.copy(find_credential.passwordUsed)
        Credentials.copy_credential(self.new_credentials.appName)
        self.assertEqual('testpass', pyperclip.paste())
        print(pyperclip.paste())
 def test_copy_credential(self):
     '''
     Test if the copy credential method copies the correct credential from credit list.
     '''
     self.new_credential.save_credential()
     twitter = Credentials("Dennis", "Twitter", "dennism", "nakuru@91")
     twitter.save_credential()
     find_credential = None
     for credential in Credentials.users_credentials_list:
         find_credential = Credentials.find_by_site_name(
             credential.site_name)
         return pyperclip.copy(find_credential.password)
     Credentials.copy_credential(self.new_credential.site_name)
     self.assertEqual('nakuru@91', pyperclip.paste())
     print(pyperclip.paste())
Exemple #4
0
def copy_credential(account):
    '''
    Function to copy credential details to clipboard
    '''
    return Credentials.copy_credential(account)
Exemple #5
0
def copy_credential(site_name):
    '''
    Function that copies credentials details to the clipborad.
    '''
    return Credentials.copy_credential(site_name)
Exemple #6
0
def copy_credential(account):
    """
    A function that copies the password using the pyperclip framework
    We import the framework then declare a function that copies the emails.
    """
    return Credentials.copy_credential(account)
def copy_credential(appName):
    '''
    function to copy credentials to clipboard
    '''

    return Credentials.copy_credential(appName)
def copy_credential(account_name):
    '''
    Function that copies credentials details.
    '''
    return Credentials.copy_credential(account_name)