-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
cli.py
933 lines (838 loc) · 25 KB
/
cli.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
import click
from click_default_group import DefaultGroup
import json
import os
import pathlib
from playwright.sync_api import sync_playwright, Error, TimeoutError
from runpy import run_module
import secrets
import sys
import textwrap
import time
import yaml
from shot_scraper.utils import filename_for_url, url_or_file_path
BROWSERS = ("chromium", "firefox", "webkit", "chrome", "chrome-beta")
def browser_option(fn):
click.option(
"--browser",
"-b",
default="chromium",
type=click.Choice(BROWSERS, case_sensitive=False),
help="Which browser to use",
)(fn)
return fn
def user_agent_option(fn):
click.option("--user-agent", help="User-Agent header to use")(fn)
return fn
def reduced_motion_option(fn):
click.option(
"--reduced-motion",
is_flag=True,
help="Emulate 'prefers-reduced-motion' media feature",
)(fn)
return fn
@click.group(
cls=DefaultGroup,
default="shot",
default_if_no_args=True,
context_settings=dict(help_option_names=["--help"]),
)
@click.version_option()
def cli():
"Tools for taking automated screenshots"
pass
@cli.command()
@click.argument("url") # TODO: validate with custom type
@click.option(
"-a",
"--auth",
type=click.File("r"),
help="Path to JSON authentication context file",
)
@click.option(
"-w",
"--width",
type=int,
help="Width of browser window, defaults to 1280",
default=1280,
)
@click.option(
"-h",
"--height",
type=int,
help="Height of browser window and shot - defaults to the full height of the page",
)
@click.option(
"-o",
"--output",
type=click.Path(file_okay=True, writable=True, dir_okay=False, allow_dash=True),
)
@click.option(
"selectors",
"-s",
"--selector",
help="Take shot of first element matching this CSS selector",
multiple=True,
)
@click.option(
"selectors_all",
"--selector-all",
help="Take shot of all elements matching this CSS selector",
multiple=True,
)
@click.option(
"js_selectors",
"--js-selector",
help="Take shot of first element matching this JS (el) expression",
multiple=True,
)
@click.option(
"js_selectors_all",
"--js-selector-all",
help="Take shot of all elements matching this JS (el) expression",
multiple=True,
)
@click.option(
"-p",
"--padding",
type=int,
help="When using selectors, add this much padding in pixels",
default=0,
)
@click.option("-j", "--javascript", help="Execute this JS prior to taking the shot")
@click.option("--retina", is_flag=True, help="Use device scale factor of 2")
@click.option("--quality", type=int, help="Save as JPEG with this quality, e.g. 80")
@click.option(
"--wait", type=int, help="Wait this many milliseconds before taking the screenshot"
)
@click.option("--wait-for", help="Wait until this JS expression returns true")
@click.option(
"--timeout",
type=int,
help="Wait this many milliseconds before failing",
)
@click.option(
"-i",
"--interactive",
is_flag=True,
help="Interact with the page in a browser before taking the shot",
)
@click.option(
"--devtools",
is_flag=True,
help="Interact mode with developer tools",
)
@click.option(
"--log-requests",
type=click.File("w"),
help="Log details of all requests to this file",
)
@browser_option
@user_agent_option
@reduced_motion_option
def shot(
url,
auth,
output,
width,
height,
selectors,
selectors_all,
js_selectors,
js_selectors_all,
padding,
javascript,
retina,
quality,
wait,
wait_for,
timeout,
interactive,
devtools,
log_requests,
browser,
user_agent,
reduced_motion,
):
"""
Take a single screenshot of a page or portion of a page.
Usage:
shot-scraper www.example.com
This will write the screenshot to www-example-com.png
Use "-o" to write to a specific file:
shot-scraper https://www.example.com/ -o example.png
You can also pass a path to a local file on disk:
shot-scraper index.html -o index.png
Using "-o -" will output to standard out:
shot-scraper https://www.example.com/ -o - > example.png
Use -s to take a screenshot of one area of the page, identified using
one or more CSS selectors:
shot-scraper https://simonwillison.net -s '#bighead'
"""
if output is None:
ext = "jpg" if quality else None
output = filename_for_url(url, ext=ext, file_exists=os.path.exists)
shot = {
"url": url,
"selectors": selectors,
"selectors_all": selectors_all,
"js_selectors": js_selectors,
"js_selectors_all": js_selectors_all,
"javascript": javascript,
"width": width,
"height": height,
"quality": quality,
"wait": wait,
"wait_for": wait_for,
"timeout": timeout,
"padding": padding,
"retina": retina,
}
interactive = interactive or devtools
with sync_playwright() as p:
use_existing_page = False
context, browser_obj = _browser_context(
p,
auth,
interactive=interactive,
devtools=devtools,
retina=retina,
browser=browser,
user_agent=user_agent,
timeout=timeout,
reduced_motion=reduced_motion,
)
if interactive or devtools:
use_existing_page = True
page = context.new_page()
page.goto(url)
context = page
click.echo(
"Hit <enter> to take the shot and close the browser window:", err=True
)
input()
try:
if output == "-":
shot = take_shot(
context,
shot,
return_bytes=True,
use_existing_page=use_existing_page,
log_requests=log_requests,
)
sys.stdout.buffer.write(shot)
else:
shot["output"] = str(output)
shot = take_shot(
context,
shot,
use_existing_page=use_existing_page,
log_requests=log_requests,
)
except TimeoutError as e:
raise click.ClickException(str(e))
browser_obj.close()
def _browser_context(
p,
auth,
interactive=False,
devtools=False,
retina=False,
browser="chromium",
user_agent=None,
timeout=None,
reduced_motion=False,
):
browser_kwargs = dict(headless=not interactive, devtools=devtools)
if browser == "chromium":
browser_obj = p.chromium.launch(**browser_kwargs)
elif browser == "firefox":
browser_obj = p.firefox.launch(**browser_kwargs)
elif browser == "webkit":
browser_obj = p.webkit.launch(**browser_kwargs)
else:
browser_kwargs["channel"] = browser
browser_obj = p.chromium.launch(**browser_kwargs)
context_args = {}
if auth:
context_args["storage_state"] = json.load(auth)
if retina:
context_args["device_scale_factor"] = 2
if reduced_motion:
context_args["reduced_motion"] = "reduce"
if user_agent is not None:
context_args["user_agent"] = user_agent
context = browser_obj.new_context(**context_args)
if timeout:
context.set_default_timeout(timeout)
return context, browser_obj
@cli.command()
@click.argument("config", type=click.File(mode="r"))
@click.option(
"-a",
"--auth",
type=click.File("r"),
help="Path to JSON authentication context file",
)
@click.option("--retina", is_flag=True, help="Use device scale factor of 2")
@click.option(
"--timeout",
type=int,
help="Wait this many milliseconds before failing",
)
@click.option("--fail-on-error", is_flag=True, help="Fail noisily on error")
@click.option(
"noclobber",
"-n",
"--no-clobber",
is_flag=True,
help="Skip images that already exist",
)
@browser_option
@user_agent_option
@reduced_motion_option
def multi(
config,
auth,
retina,
timeout,
fail_on_error,
noclobber,
browser,
user_agent,
reduced_motion,
):
"""
Take multiple screenshots, defined by a YAML file
Usage:
shot-scraper multi config.yml
Where config.yml contains configuration like this:
\b
- output: example.png
url: http://www.example.com/
https://shot-scraper.datasette.io/en/stable/multi.html
"""
shots = yaml.safe_load(config)
if shots is None:
shots = []
if not isinstance(shots, list):
raise click.ClickException("YAML file must contain a list")
with sync_playwright() as p:
context, browser_obj = _browser_context(
p,
auth,
retina=retina,
browser=browser,
user_agent=user_agent,
timeout=timeout,
reduced_motion=reduced_motion,
)
for shot in shots:
if (
noclobber
and shot.get("output")
and pathlib.Path(shot["output"]).exists()
):
continue
try:
take_shot(context, shot)
except TimeoutError as e:
if fail_on_error:
raise click.ClickException(str(e))
else:
click.echo(str(e), err=True)
continue
browser_obj.close()
@cli.command()
@click.argument("url")
@click.option(
"-a",
"--auth",
type=click.File("r"),
help="Path to JSON authentication context file",
)
@click.option(
"-o",
"--output",
type=click.File("w"),
default="-",
)
@click.option("-j", "--javascript", help="Execute this JS prior to taking the snapshot")
@click.option(
"--timeout",
type=int,
help="Wait this many milliseconds before failing",
)
def accessibility(url, auth, output, javascript, timeout):
"""
Dump the Chromium accessibility tree for the specifed page
Usage:
shot-scraper accessibility https://datasette.io/
"""
url = url_or_file_path(url, _check_and_absolutize)
with sync_playwright() as p:
context, browser_obj = _browser_context(p, auth, timeout=timeout)
page = context.new_page()
page.goto(url)
if javascript:
_evaluate_js(page, javascript)
snapshot = page.accessibility.snapshot()
browser_obj.close()
output.write(json.dumps(snapshot, indent=4))
output.write("\n")
@cli.command()
@click.argument("url")
@click.argument("javascript", required=False)
@click.option(
"-i",
"--input",
type=click.File("r"),
default="-",
help="Read input JavaScript from this file",
)
@click.option(
"-a",
"--auth",
type=click.File("r"),
help="Path to JSON authentication context file",
)
@click.option(
"-o",
"--output",
type=click.File("w"),
default="-",
help="Save output JSON to this file",
)
@browser_option
@user_agent_option
@reduced_motion_option
def javascript(
url, javascript, input, auth, output, browser, user_agent, reduced_motion
):
"""
Execute JavaScript against the page and return the result as JSON
Usage:
shot-scraper javascript https://datasette.io/ "document.title"
To return a JSON object, use this:
"({title: document.title, location: document.location})"
To use setInterval() or similar, pass a promise:
\b
"new Promise(done => setInterval(
() => {
done({
title: document.title,
h2: document.querySelector('h2').innerHTML
});
}, 1000
));"
If a JavaScript error occurs an exit code of 1 will be returned.
"""
if not javascript:
javascript = input.read()
url = url_or_file_path(url, _check_and_absolutize)
with sync_playwright() as p:
context, browser_obj = _browser_context(
p,
auth,
browser=browser,
user_agent=user_agent,
reduced_motion=reduced_motion,
)
page = context.new_page()
page.goto(url)
result = _evaluate_js(page, javascript)
browser_obj.close()
output.write(json.dumps(result, indent=4, default=str))
output.write("\n")
@cli.command()
@click.argument("url")
@click.option(
"-a",
"--auth",
type=click.File("r"),
help="Path to JSON authentication context file",
)
@click.option(
"-o",
"--output",
type=click.Path(file_okay=True, writable=True, dir_okay=False, allow_dash=True),
)
@click.option("-j", "--javascript", help="Execute this JS prior to creating the PDF")
@click.option(
"--wait", type=int, help="Wait this many milliseconds before taking the screenshot"
)
@click.option(
"--media-screen", is_flag=True, help="Use screen rather than print styles"
)
@click.option("--landscape", is_flag=True, help="Use landscape orientation")
@click.option(
"--format",
"format_",
type=click.Choice(
[
"Letter",
"Legal",
"Tabloid",
"Ledger",
"A0",
"A1",
"A2",
"A3",
"A4",
"A5",
"A6",
],
case_sensitive=False,
),
help="Which standard paper size to use",
)
@click.option("--width", help="PDF width including units, e.g. 10cm")
@click.option("--height", help="PDF height including units, e.g. 10cm")
@click.option(
"--scale",
type=click.FloatRange(min=0.1, max=2.0),
help="Scale of the webpage rendering",
)
@click.option("--print-background", is_flag=True, help="Print background graphics")
def pdf(
url,
auth,
output,
javascript,
wait,
media_screen,
landscape,
format_,
width,
height,
scale,
print_background,
):
"""
Create a PDF of the specified page
Usage:
shot-scraper pdf https://datasette.io/
Use -o to specify a filename:
shot-scraper pdf https://datasette.io/ -o datasette.pdf
You can pass a path to a file instead of a URL:
shot-scraper pdf invoice.html -o invoice.pdf
"""
url = url_or_file_path(url, _check_and_absolutize)
if output is None:
output = filename_for_url(url, ext="pdf", file_exists=os.path.exists)
with sync_playwright() as p:
context, browser_obj = _browser_context(p, auth)
page = context.new_page()
page.goto(url)
if wait:
time.sleep(wait / 1000)
if javascript:
_evaluate_js(page, javascript)
kwargs = {
"landscape": landscape,
"format": format_,
"width": width,
"height": height,
"scale": scale,
"print_background": print_background,
}
if output != "-":
kwargs["path"] = output
if media_screen:
page.emulate_media(media="screen")
pdf = page.pdf(**kwargs)
if output == "-":
sys.stdout.buffer.write(pdf)
else:
click.echo(
"Screenshot of '{}' written to '{}'".format(url, output), err=True
)
browser_obj.close()
@cli.command()
@click.option(
"--browser",
"-b",
default="chromium",
type=click.Choice(BROWSERS, case_sensitive=False),
help="Which browser to install",
)
def install(browser):
"""
Install the Playwright browser needed by this tool.
Usage:
shot-scraper install
Or for browsers other than the Chromium default:
shot-scraper install -b firefox
"""
sys.argv = ["playwright", "install", browser]
run_module("playwright", run_name="__main__")
@cli.command()
@click.argument("url")
@click.argument(
"context_file",
type=click.Path(file_okay=True, writable=True, dir_okay=False, allow_dash=True),
)
@browser_option
@user_agent_option
@click.option("--devtools", is_flag=True, help="Open browser DevTools")
def auth(url, context_file, browser, user_agent, devtools):
"""
Open a browser so user can manually authenticate with the specified site,
then save the resulting authentication context to a file.
Usage:
shot-scraper auth https://github.com/ auth.json
"""
with sync_playwright() as p:
context, browser_obj = _browser_context(
p,
auth=None,
interactive=True,
devtools=devtools,
browser=browser,
user_agent=user_agent,
)
context = browser_obj.new_context()
page = context.new_page()
page.goto(url)
click.echo("Hit <enter> after you have signed in:", err=True)
input()
context_state = context.storage_state()
context_json = json.dumps(context_state, indent=2) + "\n"
if context_file == "-":
click.echo(context_json)
else:
with open(context_file, "w") as fp:
fp.write(context_json)
# chmod 600 to avoid other users on the shared machine reading it
pathlib.Path(context_file).chmod(0o600)
class ShotError(Exception):
pass
def _check_and_absolutize(filepath):
path = pathlib.Path(filepath)
if path.exists():
return path.absolute()
return False
def take_shot(
context_or_page,
shot,
return_bytes=False,
use_existing_page=False,
log_requests=None,
):
url = shot.get("url") or ""
if not url:
raise ShotError("url is required")
url = url_or_file_path(url, file_exists=_check_and_absolutize)
output = shot.get("output", "").strip()
if not output and not return_bytes:
output = filename_for_url(url, ext="png", file_exists=os.path.exists)
quality = shot.get("quality")
wait = shot.get("wait")
wait_for = shot.get("wait_for")
padding = shot.get("padding") or 0
selectors = shot.get("selectors") or []
selectors_all = shot.get("selectors_all") or []
js_selectors = shot.get("js_selectors") or []
js_selectors_all = shot.get("js_selectors_all") or []
# If a single 'selector' append to 'selectors' array (and 'js_selectors' etc)
if shot.get("selector"):
selectors.append(shot["selector"])
if shot.get("selector_all"):
selectors_all.append(shot["selector_all"])
if shot.get("js_selector"):
js_selectors.append(shot["js_selector"])
if shot.get("js_selector_all"):
js_selectors_all.append(shot["js_selector_all"])
if not use_existing_page:
page = context_or_page.new_page()
if log_requests:
def on_response(response):
try:
body = response.body()
size = len(body)
except Error as ex:
if "Network.getResponseBody" in ex.message:
size = None
else:
raise
log_requests.write(
json.dumps(
{
"method": response.request.method,
"url": response.url,
"size": size,
"timing": response.request.timing,
}
)
+ "\n"
)
page.on("response", on_response)
else:
page = context_or_page
viewport = {}
full_page = True
if shot.get("width") or shot.get("height"):
viewport = {
"width": shot.get("width") or 1280,
"height": shot.get("height") or 720,
}
page.set_viewport_size(viewport)
if shot.get("height"):
full_page = False
page.goto(url)
if wait:
time.sleep(wait / 1000)
javascript = shot.get("javascript")
if javascript:
_evaluate_js(page, javascript)
if wait_for:
page.wait_for_function(wait_for)
screenshot_args = {}
if quality:
screenshot_args.update({"quality": quality, "type": "jpeg"})
if not return_bytes:
screenshot_args["path"] = output
if (
not selectors
and not js_selectors
and not selectors_all
and not js_selectors_all
):
screenshot_args["full_page"] = full_page
if js_selectors or js_selectors_all:
# Evaluate JavaScript adding classes we can select on
(
js_selector_javascript,
extra_selectors,
extra_selectors_all,
) = _js_selector_javascript(js_selectors, js_selectors_all)
selectors.extend(extra_selectors)
selectors_all.extend(extra_selectors_all)
_evaluate_js(page, js_selector_javascript)
if selectors or selectors_all:
# Use JavaScript to create a box around those elementsdef
selector_javascript, selector_to_shoot = _selector_javascript(
selectors, selectors_all, padding
)
_evaluate_js(page, selector_javascript)
try:
bytes_ = page.locator(selector_to_shoot).screenshot(**screenshot_args)
except TimeoutError as e:
raise click.ClickException(
"Timed out while waiting for element to become available.\n\n{}".format(
e
)
)
if return_bytes:
return bytes_
else:
page.locator(selector_to_shoot).screenshot(**screenshot_args)
message = "Screenshot of '{}' on '{}' written to '{}'".format(
", ".join(list(selectors) + list(selectors_all)), url, output
)
else:
# Whole page
if return_bytes:
return page.screenshot(**screenshot_args)
else:
page.screenshot(**screenshot_args)
message = "Screenshot of '{}' written to '{}'".format(url, output)
click.echo(message, err=True)
def _js_selector_javascript(js_selectors, js_selectors_all):
extra_selectors = []
extra_selectors_all = []
js_blocks = []
for js_selector in js_selectors:
klass = "js-selector-{}".format(secrets.token_hex(16))
extra_selectors.append(".{}".format(klass))
js_blocks.append(
textwrap.dedent(
"""
Array.from(
document.getElementsByTagName('*')
).find(el => {}).classList.add("{}");
""".format(
js_selector, klass
)
)
)
for js_selector_all in js_selectors_all:
klass = "js-selector-all-{}".format(secrets.token_hex(16))
extra_selectors_all.append(".{}".format(klass))
js_blocks.append(
textwrap.dedent(
"""
Array.from(
document.getElementsByTagName('*')
).filter(el => {}).forEach(el => el.classList.add("{}"));
""".format(
js_selector_all, klass
)
)
)
js_selector_javascript = "() => {" + "\n".join(js_blocks) + "}"
return js_selector_javascript, extra_selectors, extra_selectors_all
def _selector_javascript(selectors, selectors_all, padding=0):
selector_to_shoot = "shot-scraper-{}".format(secrets.token_hex(8))
selector_javascript = textwrap.dedent(
"""
new Promise(takeShot => {
let padding = %s;
let minTop = 100000000;
let minLeft = 100000000;
let maxBottom = 0;
let maxRight = 0;
let els = %s.map(s => document.querySelector(s));
// Add the --selector-all elements
%s.map(s => els.push(...document.querySelectorAll(s)));
els.forEach(el => {
let rect = el.getBoundingClientRect();
if (rect.top < minTop) {
minTop = rect.top;
}
if (rect.left < minLeft) {
minLeft = rect.left;
}
if (rect.bottom > maxBottom) {
maxBottom = rect.bottom;
}
if (rect.right > maxRight) {
maxRight = rect.right;
}
});
// Adjust them based on scroll position
let top = minTop + window.scrollY;
let bottom = maxBottom + window.scrollY;
let left = minLeft + window.scrollX;
let right = maxRight + window.scrollX;
// Apply padding
top = top - padding;
bottom = bottom + padding;
left = left - padding;
right = right + padding;
let div = document.createElement('div');
div.style.position = 'absolute';
div.style.top = top + 'px';
div.style.left = left + 'px';
div.style.width = (right - left) + 'px';
div.style.height = (bottom - top) + 'px';
div.setAttribute('id', %s);
document.body.appendChild(div);
setTimeout(() => {
takeShot();
}, 300);
});
"""
% (
padding,
json.dumps(selectors),
json.dumps(selectors_all),
json.dumps(selector_to_shoot),
)
)
return selector_javascript, "#" + selector_to_shoot
def _evaluate_js(page, javascript):
try:
return page.evaluate(javascript)
except Error as error:
raise click.ClickException(error.message)