Skip to content

Instantly share code, notes, and snippets.

View abresler's full-sized avatar

Alex Bresler abresler

View GitHub Profile
@jamesob
jamesob / gist:2819803
Created May 28, 2012 15:48
Scraping Chase for CC transactions
from selenium import webdriver
import time
def get_chase_amazon_driver(username, password):
"""Return a logged-in Chase Amazon card selenium driver instance."""
driver = webdriver.Firefox()
driver.get("http://www.chase.com")
time.sleep(2)