Skip to content

Instantly share code, notes, and snippets.

@fnneves
Last active March 8, 2020 05:05
Show Gist options
  • Save fnneves/907fe74c2b2e99fedbc051e50ed03df2 to your computer and use it in GitHub Desktop.
Save fnneves/907fe74c2b2e99fedbc051e50ed03df2 to your computer and use it in GitHub Desktop.
from time import sleep, strftime
from random import randint
import pandas as pd
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import smtplib
from email.mime.multipart import MIMEMultipart
# Change this to your own chromedriver path!
chromedriver_path = 'C:/{YOUR PATH HERE}/chromedriver_win32/chromedriver.exe'
driver = webdriver.Chrome(executable_path=chromedriver_path) # This will open the Chrome window
sleep(2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment