forked from go-rod/rod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelement.go
544 lines (450 loc) · 11.3 KB
/
element.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
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
package rod
import (
"context"
"encoding/base64"
"fmt"
"io"
"path/filepath"
"strings"
"time"
"github.com/tidwall/gjson"
"github.com/go-rod/rod/lib/proto"
"github.com/ysmood/kit"
)
// Element represents the DOM element
type Element struct {
ctx context.Context
ctxCancel func()
timeoutCancel func()
page *Page
ObjectID proto.RuntimeRemoteObjectID
}
// FocusE doc is similar to the method Focus
func (el *Element) FocusE() error {
err := el.ScrollIntoViewE()
if err != nil {
return err
}
_, err = el.EvalE(true, `this.focus()`, nil)
return err
}
// ScrollIntoViewE doc is similar to the method ScrollIntoViewIfNeeded
func (el *Element) ScrollIntoViewE() error {
defer el.tryTrace("scroll into view")()
el.page.browser.trySlowmotion()
return proto.DOMScrollIntoViewIfNeeded{ObjectID: el.ObjectID}.Call(el)
}
// ClickE doc is similar to the method Click
func (el *Element) ClickE(button proto.InputMouseButton) error {
err := el.WaitVisibleE()
if err != nil {
return err
}
err = el.ScrollIntoViewE()
if err != nil {
return err
}
box, err := el.BoxE()
if err != nil {
return err
}
x := box.Left + box.Width/2
y := box.Top + box.Height/2
err = el.page.Mouse.MoveE(x, y, 1)
if err != nil {
return err
}
defer el.tryTrace(string(button) + " click")()
return el.page.Mouse.ClickE(button)
}
// PressE doc is similar to the method Press
func (el *Element) PressE(key rune) error {
err := el.WaitVisibleE()
if err != nil {
return err
}
err = el.FocusE()
if err != nil {
return err
}
defer el.tryTrace("press " + string(key))()
return el.page.Keyboard.PressE(key)
}
// SelectTextE doc is similar to the method SelectText
func (el *Element) SelectTextE(regex string) error {
err := el.FocusE()
if err != nil {
return err
}
defer el.tryTrace("select text: " + regex)()
el.page.browser.trySlowmotion()
js, jsArgs := jsHelper("selectText", Array{regex})
_, err = el.EvalE(true, js, jsArgs)
return err
}
// SelectAllTextE doc is similar to the method SelectAllText
func (el *Element) SelectAllTextE() error {
err := el.FocusE()
if err != nil {
return err
}
defer el.tryTrace("select all text")()
el.page.browser.trySlowmotion()
js, jsArgs := jsHelper("selectAllText", nil)
_, err = el.EvalE(true, js, jsArgs)
return err
}
// InputE doc is similar to the method Input
func (el *Element) InputE(text string) error {
err := el.WaitVisibleE()
if err != nil {
return err
}
err = el.FocusE()
if err != nil {
return err
}
defer el.tryTrace("input " + text)()
err = el.page.Keyboard.InsertTextE(text)
if err != nil {
return err
}
js, jsArgs := jsHelper("inputEvent", nil)
_, err = el.EvalE(true, js, jsArgs)
return err
}
// BlurE is similar to the method Blur
func (el *Element) BlurE() error {
_, err := el.EvalE(true, "this.blur()", nil)
return err
}
// SelectE doc is similar to the method Select
func (el *Element) SelectE(selectors []string) error {
err := el.WaitVisibleE()
if err != nil {
return err
}
defer el.tryTrace(fmt.Sprintf(
`select "%s"`,
strings.Join(selectors, "; ")))()
el.page.browser.trySlowmotion()
js, jsArgs := jsHelper("select", Array{selectors})
_, err = el.EvalE(true, js, jsArgs)
return err
}
// MatchesE checks if the element can be selected by the css selector
func (el *Element) MatchesE(selector string) (bool, error) {
res, err := el.EvalE(true, `s => this.matches(s)`, Array{selector})
if err != nil {
return false, err
}
return res.Value.Bool(), nil
}
// AttributeE is similar to the method Attribute
func (el *Element) AttributeE(name string) (*string, error) {
attr, err := el.EvalE(true, "(n) => this.getAttribute(n)", Array{name})
if err != nil {
return nil, err
}
if attr.Value.Type == gjson.Null {
return nil, nil
}
return &attr.Value.Str, nil
}
// PropertyE is similar to the method Property
func (el *Element) PropertyE(name string) (proto.JSON, error) {
prop, err := el.EvalE(true, "(n) => this[n]", Array{name})
if err != nil {
return proto.JSON{}, err
}
return prop.Value, nil
}
// SetFilesE doc is similar to the method SetFiles
func (el *Element) SetFilesE(paths []string) error {
absPaths := []string{}
for _, p := range paths {
absPath, err := filepath.Abs(p)
if err != nil {
return err
}
absPaths = append(absPaths, absPath)
}
defer el.tryTrace(fmt.Sprintf("set files: %v", absPaths))
el.page.browser.trySlowmotion()
err := proto.DOMSetFileInputFiles{
Files: absPaths,
ObjectID: el.ObjectID,
}.Call(el)
return err
}
// DescribeE doc is similar to the method Describe
// But it can choose depth, depth default is 1, -1 to all
// please see https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-describeNode
func (el *Element) DescribeE(depth int, pierce bool) (*proto.DOMNode, error) {
var Depth int64
switch {
case depth < 0:
Depth = -1 // -1 to all
case depth == 0:
Depth = 1
default:
Depth = int64(depth)
}
val, err := proto.DOMDescribeNode{ObjectID: el.ObjectID, Depth: Depth, Pierce: pierce}.Call(el)
if err != nil {
return nil, err
}
return val.Node, nil
}
// ShadowRootE returns the shadow root of this element
func (el *Element) ShadowRootE() (*Element, error) {
node, err := el.DescribeE(1, false)
if err != nil {
return nil, err
}
// though now it's an array, w3c changed the spec of it to be a single.
id := node.ShadowRoots[0].BackendNodeID
shadowNode, err := proto.DOMResolveNode{BackendNodeID: id}.Call(el)
if err != nil {
return nil, err
}
return el.page.ElementFromObject(shadowNode.Object.ObjectID), nil
}
// Frame creates a page instance that represents the iframe
func (el *Element) Frame() *Page {
newPage := *el.page
newPage.element = el
newPage.jsHelperObjectID = ""
newPage.windowObjectID = ""
return &newPage
}
// TextE doc is similar to the method Text
func (el *Element) TextE() (string, error) {
js, jsArgs := jsHelper("text", nil)
str, err := el.EvalE(true, js, jsArgs)
if err != nil {
return "", err
}
return str.Value.String(), nil
}
// HTMLE doc is similar to the method HTML
func (el *Element) HTMLE() (string, error) {
str, err := el.EvalE(true, `this.outerHTML`, nil)
if err != nil {
return "", err
}
return str.Value.String(), nil
}
// VisibleE doc is similar to the method Visible
func (el *Element) VisibleE() (bool, error) {
js, jsArgs := jsHelper("visible", nil)
res, err := el.EvalE(true, js, jsArgs)
if err != nil {
return false, err
}
return res.Value.Bool(), nil
}
// WaitStableE not using requestAnimation here because it can trigger to many checks,
// or miss checks for jQuery css animation.
func (el *Element) WaitStableE(interval time.Duration) error {
err := el.WaitVisibleE()
if err != nil {
return err
}
box := el.Box()
t := time.NewTicker(interval)
defer t.Stop()
for range t.C {
select {
case <-t.C:
case <-el.ctx.Done():
return el.ctx.Err()
}
current := el.Box()
if *box == *current {
break
}
box = current
}
return nil
}
// WaitE doc is similar to the method Wait
func (el *Element) WaitE(js string, params Array) error {
return kit.Retry(el.ctx, Sleeper(), func() (bool, error) {
res, err := el.EvalE(true, js, params)
if err != nil {
return true, err
}
if res.Value.Bool() {
return true, nil
}
return false, nil
})
}
// WaitVisibleE doc is similar to the method WaitVisible
func (el *Element) WaitVisibleE() error {
js, jsArgs := jsHelper("visible", nil)
return el.WaitE(js, jsArgs)
}
// WaitInvisibleE doc is similar to the method WaitInvisible
func (el *Element) WaitInvisibleE() error {
js, jsArgs := jsHelper("invisible", nil)
return el.WaitE(js, jsArgs)
}
// Box represents the element bounding rect
type Box struct {
Top float64 `json:"top"`
Left float64 `json:"left"`
Width float64 `json:"width"`
Height float64 `json:"height"`
}
// BoxE doc is similar to the method Box
func (el *Element) BoxE() (*Box, error) {
res, err := proto.DOMGetBoxModel{ObjectID: el.ObjectID}.Call(el)
if err != nil {
return nil, err
}
return &Box{
Top: res.Model.Content[1],
Left: res.Model.Content[0],
Width: res.Model.Content[2] - res.Model.Content[0],
Height: res.Model.Content[7] - res.Model.Content[1],
}, nil
}
// CanvasToImageE get image data of a canvas.
// The default format is image/png.
// The default quality is 0.92.
// doc: https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/toDataURL
func (el *Element) CanvasToImageE(format string, quality float64) ([]byte, error) {
res, err := el.EvalE(true,
`(format, quality) => this.toDataURL(format, quality)`,
Array{format, quality})
if err != nil {
return nil, err
}
_, bin := parseDataURI(res.Value.Str)
if err != nil {
return nil, err
}
return bin, nil
}
// ResourceE doc is similar to the method Resource
func (el *Element) ResourceE() ([]byte, error) {
js, jsArgs := jsHelper("resource", nil)
src, err := el.EvalE(true, js, jsArgs)
if err != nil {
return nil, err
}
defer el.page.EnableDomain(&proto.PageEnable{})()
frameID, err := el.page.frameID()
if err != nil {
return nil, err
}
res, err := proto.PageGetResourceContent{
FrameID: frameID,
URL: src.Value.String(),
}.Call(el)
if err != nil {
return nil, err
}
data := res.Content
var bin []byte
if res.Base64Encoded {
bin, err = base64.StdEncoding.DecodeString(data)
if err != nil {
return nil, err
}
} else {
bin = []byte(data)
}
return bin, nil
}
// ScreenshotE of the area of the element
func (el *Element) ScreenshotE(format proto.PageCaptureScreenshotFormat, quality int) ([]byte, error) {
err := el.WaitVisibleE()
if err != nil {
return nil, err
}
err = el.ScrollIntoViewE()
if err != nil {
return nil, err
}
box, err := el.BoxE()
if err != nil {
return nil, err
}
opts := &proto.PageCaptureScreenshot{
Format: format,
Clip: &proto.PageViewport{
X: box.Left,
Y: box.Top,
Width: box.Width,
Height: box.Height,
Scale: 1,
},
}
if quality > -1 {
opts.Quality = int64(quality)
}
return el.page.Root().ScreenshotE(false, opts)
}
// ReleaseE doc is similar to the method Release
func (el *Element) ReleaseE() error {
err := el.page.Context(el.ctx, el.ctxCancel).ReleaseE(el.ObjectID)
if err != nil {
return err
}
el.ctxCancel()
return nil
}
// CallContext parameters for proto
func (el *Element) CallContext() (context.Context, proto.Client, string) {
return el.ctx, el.page.browser, string(el.page.SessionID)
}
// EvalE doc is similar to the method Eval
func (el *Element) EvalE(byValue bool, js string, params Array) (*proto.RuntimeRemoteObject, error) {
return el.page.Context(el.ctx, el.ctxCancel).EvalE(byValue, el.ObjectID, js, params)
}
func (el *Element) ensureParentPage(nodeID proto.DOMNodeID, objID proto.RuntimeRemoteObjectID) error {
has, err := el.page.hasElement(objID)
if err != nil {
return err
}
if has {
return nil
}
// DFS for the iframe that holds the element
var walk func(page *Page) error
walk = func(page *Page) error {
list, err := page.ElementsE("", "iframe")
if err != nil {
return err
}
for _, f := range list {
p := f.Frame()
objID, err := p.resolveNode(nodeID)
if err != nil {
return err
}
if objID != "" {
el.page = p
el.ObjectID = objID
return io.EOF
}
err = walk(p)
err = f.ReleaseE()
if err != nil {
return err
}
if err != nil {
return err
}
}
return nil
}
err = walk(el.page)
if err == io.EOF {
return nil
}
return err
}