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