Created
April 16, 2012 22:18
-
-
Save nrrb/2402041 to your computer and use it in GitHub Desktop.
Selenium stuffs
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 selenium import webdriver | |
profile = webdriver.FirefoxProfile() | |
# Set proxy settings to manual | |
profile.set_preference('network.proxy.type', 1) | |
# Set proxy to Tor client on localhost | |
profile.set_preference('network.proxy.socks', '127.0.0.1') | |
profile.set_preference('network.proxy.socks_port', 9050) | |
# Disable all images from loading, speeds page loading | |
# http://kb.mozillazine.org/Permissions.default.image | |
profile.set_preference('permissions.default.image', 2) | |
# Set all new windows to open in the current window instead | |
profile.set_preference('browser.link.open_newwindow', 1) | |
browser = webdriver.Firefox(profile) | |
browser.get('http://www.google.com/') | |
html = browser.page_source |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment