Created
May 12, 2020 03:38
-
-
Save sodastereo/b7a8d69637fbb83da08ee0726867ca20 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###################################################### | |
# Imports # | |
###################################################### | |
from selenium import webdriver | |
from selenium.webdriver.common.by import By | |
import time | |
###################################################### | |
# Variables # | |
###################################################### | |
# facebook username and password | |
username = 'ENTER EMAIL' | |
password = 'ENTER PASSWORD' | |
business_page = 'ENTER YOUR FB BUSINESS PAGE HERE' | |
event_page = 'ENTER YOUR FB BUSINESS EVENT PAGE HERE' | |
driver = webdriver.Chrome("ENTER CHROMEDRIVER PATH") | |
driver.get('https://www.facebook.com') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment