From cae40a7ad9ecc95d44d7e465524330cca7a26ad4 Mon Sep 17 00:00:00 2001 From: Prateek Singh Date: Tue, 21 Sep 2021 16:37:24 +0530 Subject: [PATCH] Update 01_Selenium_With_Python.py --- Python Selenium/01_Selenium_With_Python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python Selenium/01_Selenium_With_Python.py b/Python Selenium/01_Selenium_With_Python.py index 2bcf37c..7faa43d 100644 --- a/Python Selenium/01_Selenium_With_Python.py +++ b/Python Selenium/01_Selenium_With_Python.py @@ -12,7 +12,7 @@ password = driver.find_element_by_name("pass") password.clear() -password.send_keys("Durg@v@ti@123") +password.send_keys("Password@123") password.send_keys(Keys.RETURN) # Keys.RETURN is equal to pressing 'ENTER' button driver.get("https://www.facebook.com/groups/powershell/") # navigate to the URL using .get("URL") method