22 lines
848 B
Python
22 lines
848 B
Python
"""This test demonstrates the use of password encryption/decryption.
|
|
(Technically considered to be obfuscation/unobfuscation.)"""
|
|
from seleniumbase import BaseCase
|
|
from seleniumbase import encryption
|
|
BaseCase.main(__name__, __file__)
|
|
|
|
|
|
class DecryptionTests(BaseCase):
|
|
def test_decrypt_password(self):
|
|
self.open("https://www.saucedemo.com")
|
|
self.type("#user-name", "standard_user")
|
|
|
|
encrypted_password = "$^*ENCRYPT=S3BDTAdCWzMmKEY8Gjg=?&#$"
|
|
print("\nEncrypted Password = %s" % encrypted_password)
|
|
password = encryption.decrypt(encrypted_password)
|
|
print("Decrypted Password = %s" % password)
|
|
self.type("#password", password)
|
|
|
|
self.click('input[type="submit"]')
|
|
self.assert_element("#inventory_container")
|
|
self.assert_element('div:contains("Sauce Labs Backpack")')
|