Skip to content

Instantly share code, notes, and snippets.

@YHaruoka
Created July 16, 2022 10:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YHaruoka/4a56e365af22fd2dda2d07c83e9ef98f to your computer and use it in GitHub Desktop.
Save YHaruoka/4a56e365af22fd2dda2d07c83e9ef98f to your computer and use it in GitHub Desktop.
from selenium import webdriver
# Open web-driver
webDriver = webdriver.Chrome('chromedriver102.exe')
# Access to URL
webDriver.get('http://tecsingularity.com/')
# Set image(window) size
webDriver.set_window_size(1920, 1080)
# Save screenshot
webDriver.save_screenshot('screenshot.png')
# Close web-driver
webDriver.quit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment