forked from Tinkerforge/warp-charger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
screenshot.py
125 lines (92 loc) · 4.87 KB
/
screenshot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
from selenium import webdriver
from selenium.webdriver.firefox.options import Options
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from PIL import Image
import io
import sys
import time
import argparse
DEVICE_PIXEL_RATIO = 2.0
MANUAL_COLUMN_ASPECT_RATIO = 0.358 # estimated by screenshot
parser = argparse.ArgumentParser()
parser.add_argument("-o", "--output", help="Path to write the screenshot to.")
parser.add_argument("-H", "--host", help="Host to connect to.")
parser.add_argument("--crop", action="store_true", help="crop top 24 pixels. Use this when screenshoting sub-pages to remove top bar shadow")
parser.add_argument("-e", "--element", nargs='?', help="CSS selector of element to screenshot. Omit to screenshot complete page.")
parser.add_argument("-c", "--click", nargs='*', help="List of CSS selectors to click before taking the screenshot.")
parser.add_argument("-f", "--first", nargs='?', help="CSS selector of first element to be visible.")
parser.add_argument("-l", "--last", nargs='?', help="CSS selector of last element to be visible.")
parser.add_argument("-s", "--style", nargs='?', help="CSS to inject before taking the screenshot")
parser.add_argument("-w", "--width", nargs='?', help="Width of virtual window.")
parser.add_argument("-p", "--page", action="store_true", help="Ignore other arguments and take screenshot of complete page")
parser.add_argument("--full", nargs='?', help="Additionally take screenshot with top and navbar visible. Stored as ..._full.png")
args = parser.parse_args()
print("Screenshotting http://{}/{} to {}".format(args.host, args.element, args.output))
options = Options()
options.add_argument('-headless')
options.set_preference("layout.css.devPixelsPerPx", str(DEVICE_PIXEL_RATIO))
with webdriver.Firefox(options=options) as driver:
# 992 is just above the md<->lg breakpoint
driver.set_window_size(args.width if args.width else 992, 10000)
driver.get('http://' + args.host)
if args.click:
for to_click in args.click:
WebDriverWait(driver, 10).until(EC.element_to_be_clickable((By.CSS_SELECTOR, to_click))).click()
if args.element:
# Add padding around element. This fixes cut off borders in the screenshot
script = 'document.styleSheets[0].insertRule("{} {{padding: 1px;}}", 0 )'.format(args.element)
driver.execute_script(script)
if args.style:
script = 'document.styleSheets[0].insertRule("{}", 0 )'.format(args.style)
driver.execute_script(script)
# Await fade transition
time.sleep(1)
if args.page:
print("Screenshoting complete page")
with open(args.output, "wb") as f:
f.write(driver.get_screenshot_as_png())
sys.exit(0)
# Smile!
element = driver.find_element(By.CSS_SELECTOR, args.element) if args.element else driver.find_element(By.TAG_NAME, "body")
png = element.screenshot_as_png
# Crop inserted padding and (if a complete subpage is screenshotted) the header fade.
image = Image.open(io.BytesIO(png))
left = 0
right = left + (image.size[0])
top = 24 if args.crop else 0
if args.first:
top_e = driver.find_element(By.CSS_SELECTOR, args.first)
top = (top_e.location["y"] - element.location["y"]) * DEVICE_PIXEL_RATIO
bottom = (image.size[1])
if args.last:
bottom_e = driver.find_element(By.CSS_SELECTOR, args.last)
y = bottom_e.location["y"] - element.location["y"]
h = bottom_e.size["height"]
bottom = (y + h) * DEVICE_PIXEL_RATIO
image = image.crop((left, top, right, bottom))
if image.size[0] / image.size[1] < MANUAL_COLUMN_ASPECT_RATIO:
print("WARNING: Screenshot aspect ratio {} too low. Will not fit in one manual column!".format(image.size[0] / image.size[1]))
image.save(args.output)
if args.full:
driver.set_window_size(args.full, 10000)
#await resize
time.sleep(0.5)
element = driver.find_element(By.TAG_NAME, "body")
png = element.screenshot_as_png
# Crop inserted padding and (if a complete subpage is screenshotted) the header fade.
image = Image.open(io.BytesIO(png))
left = 0
right = left + (image.size[0])
top = 0
bottom = (image.size[1])
if args.last:
bottom_e = driver.find_element(By.CSS_SELECTOR, args.last)
y = bottom_e.location["y"] - element.location["y"]
h = bottom_e.size["height"]
bottom = (y + h) * DEVICE_PIXEL_RATIO
image = image.crop((left, top, right, bottom))
if image.size[0] / image.size[1] < MANUAL_COLUMN_ASPECT_RATIO:
print("WARNING: Screenshot aspect ratio {} too low. Will not fit in one manual column!".format(image.size[0] / image.size[1]))
image.save(args.output.replace(".png", "_full.png"))