yarrowverne
2/4/2017 - 2:24 AM

amazon_zaiko_kakunin_01

# coding: utf-8
import sys
import os
import time
from selenium import webdriver
from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import TimeoutException
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.chrome.options import Options
import datetime

executable_path = "C:/Users/user/Documents/python/sedori/chromedriver.exe"
os.environ["webdriver.chrome.driver"] = executable_path

chrome_options = Options()
chrome_options.add_extension("C:\Users\user\Documents\python\sedori\keepa.crx")
driver = webdriver.Chrome(executable_path=executable_path, chrome_options=chrome_options)