Skip to content

Commit

Permalink
Update 01_Selenium_With_Python.py
Browse files Browse the repository at this point in the history
  • Loading branch information
PrateekKumarSingh authored Sep 21, 2021
1 parent bcc2dfe commit cae40a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python Selenium/01_Selenium_With_Python.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cae40a7

Please sign in to comment.