-
Notifications
You must be signed in to change notification settings - Fork 241
/
main.go
45 lines (38 loc) · 1.02 KB
/
main.go
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
// Command emulate is a chromedp example demonstrating how to emulate a
// specific device such as an iPhone.
package main
import (
"context"
"log"
"os"
"github.com/chromedp/chromedp"
"github.com/chromedp/chromedp/device"
)
func main() {
// create context
ctx, cancel := chromedp.NewContext(context.Background())
defer cancel()
// run
var b1, b2 []byte
if err := chromedp.Run(ctx,
// emulate iPhone 7 landscape
chromedp.Emulate(device.IPhone7landscape),
chromedp.Navigate(`https://www.whatsmyua.info/`),
chromedp.CaptureScreenshot(&b1),
// reset
chromedp.Emulate(device.Reset),
// set really large viewport
chromedp.EmulateViewport(1920, 2000),
chromedp.Navigate(`https://www.whatsmyua.info/?a`),
chromedp.CaptureScreenshot(&b2),
); err != nil {
log.Fatal(err)
}
if err := os.WriteFile("screenshot1.png", b1, 0o644); err != nil {
log.Fatal(err)
}
if err := os.WriteFile("screenshot2.png", b2, 0o644); err != nil {
log.Fatal(err)
}
log.Printf("wrote screenshot1.png and screenshot2.png")
}