From 2f7cd038c2e96b21d394ca329b97c129ffdf716b Mon Sep 17 00:00:00 2001 From: Emmanuel Ferdman Date: Sun, 27 Oct 2024 12:33:03 -0700 Subject: [PATCH] Update test decryption reference Signed-off-by: Emmanuel Ferdman --- seleniumbase/common/ReadMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seleniumbase/common/ReadMe.md b/seleniumbase/common/ReadMe.md index 6927fa3ca9a..09a249a26c4 100644 --- a/seleniumbase/common/ReadMe.md +++ b/seleniumbase/common/ReadMe.md @@ -68,4 +68,4 @@ password = encryption.decrypt('$^*ENCRYPT=RXlYMSJWTz8HSwM=?&#$') (You'll notice that encrypted strings have a common start token and end token. This is to help tell them apart from non-encrypted strings. You can customize these tokens in [settings.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/config/settings.py). The current default setting is `$^*ENCRYPT=` for the start token and `?&#$` for the end token.) -See [decryption_test.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/decryption_test.py) for an example of decrypting encrypted passwords in tests. +See [test_decryption.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/test_decryption.py) for an example of decrypting encrypted passwords in tests.