Created
June 4, 2016 17:04
-
-
Save rinchik/9cfdcdee5b7c8d831773767ad9c1adc6 to your computer and use it in GitHub Desktop.
Capturing screenshots with Python and Selenium
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 | |
import os | |
class ScreenCapture: | |
STAGING_URL = 'http://www.yahoo.com' | |
PRODUCTION_URL = 'http://www.yahoo.com' | |
driver = None | |
def __init__(self): | |
self.set_up() | |
self.capture_screens() | |
self.clean_up() | |
def set_up(self): | |
self.driver = webdriver.PhantomJS() | |
def clean_up(self): | |
self.driver.close() | |
def capture_screens(self): | |
self.screenshot(self.STAGING_URL, 'screen_staging.png') | |
self.screenshot(self.PRODUCTION_URL, 'screen_production.png') | |
def screenshot(self, url, file_name): | |
print "Capturing", url, "screenshot as", file_name, "..." | |
self.driver.get(url) | |
self.driver.set_window_size(1024, 768) | |
self.driver.save_screenshot(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'screenshots', file_name)) | |
self.driver.get_screenshot_as_png() | |
print "Done." | |
ScreenCapture() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment