Created
June 28, 2017 08:34
-
-
Save erika-dike/189ab33bb781517f286b41a6512a116b to your computer and use it in GitHub Desktop.
Auto download pics for site
This file contains hidden or 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 selenium import webdriver | |
| from selenium.webdriver.support.ui import WebDriverWait | |
| def init_driver(): | |
| driver = webdriver.Firefox() | |
| driver.wait = WebDriverWait(driver, 5) | |
| return driver |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment