forked from bunsenapp/go-selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
remote_driver_screenshot.go
50 lines (41 loc) · 1.26 KB
/
remote_driver_screenshot.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
46
47
48
49
50
package goselenium
import (
"encoding/base64"
"encoding/json"
"fmt"
)
// ScreenshotResponse is the response returned from the Screenshot and
// ScreenshotElement methods.
type ScreenshotResponse struct {
State string
EncodedImage string
}
// ImageBytes is a helpful function for decoding the base64 encoded image URL.
// The image returned is a PNG image and as such can be manipulated by the
// image/png package. Trying to save this as any other image type will
// result in it failing to open.
func (s *ScreenshotResponse) ImageBytes() ([]byte, error) {
return base64.StdEncoding.DecodeString(s.EncodedImage)
}
func (s *seleniumWebDriver) Screenshot() (*ScreenshotResponse, error) {
if len(s.sessionID) == 0 {
return nil, newSessionIDError("Screenshot")
}
var err error
url := fmt.Sprintf("%s/session/%s/screenshot", s.seleniumURL, s.sessionID)
resp, err := s.valueRequest(&request{
url: url,
method: "GET",
body: nil,
callingMethod: "Screenshot",
})
if err != nil {
return nil, err
}
var value string
err = json.Unmarshal(resp.Value, &value)
if err != nil {
return nil, newUnmarshallingError(err, "Screenshot", string(resp.Value))
}
return &ScreenshotResponse{State: resp.State, EncodedImage: value}, nil
}