Using Selenium in Python to Automate Facebook Login
https://www.askpython.com/python/examples/python-automate-facebook-login
LOGIN_URL = 'https://www.facebook.com/login.php' Now, we’ll implement the login functionality as a class. Let’s call it FacebookLogin. When we call __init__ (), we’ll initialize the selenium webdriver session. We need to send both the email and password fields to our webdriver session, so we’ll take them as input.
DA: 62 PA: 63 MOZ Rank: 40