Last active
March 8, 2020 05:05
-
-
Save fnneves/907fe74c2b2e99fedbc051e50ed03df2 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
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