forked from go-rod/rod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelement.go
612 lines (506 loc) · 13.1 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
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
package rod
import (
"context"
"encoding/base64"
"fmt"
"io"
"path/filepath"
"strings"
"time"
"github.com/tidwall/gjson"
"github.com/go-rod/rod/lib/assets/js"
"github.com/go-rod/rod/lib/input"
"github.com/go-rod/rod/lib/proto"
"github.com/go-rod/rod/lib/utils"
)
// Element represents the DOM element
type Element struct {
ctx context.Context
sleeper func() utils.Sleeper
page *Page
ObjectID proto.RuntimeRemoteObjectID
}
// Focus sets focus on the specified element
func (el *Element) Focus() error {
err := el.ScrollIntoView()
if err != nil {
return err
}
_, err = el.EvalWithOptions(NewEvalOptions(`this.focus()`, nil).ByUser())
return err
}
// ScrollIntoView scrolls the current element into the visible area of the browser
// window if it's not already within the visible area.
func (el *Element) ScrollIntoView() error {
defer el.tryTraceInput("scroll into view")()
el.page.browser.trySlowmotion()
return proto.DOMScrollIntoViewIfNeeded{ObjectID: el.ObjectID}.Call(el)
}
// Hover the mouse over the center of the element.
func (el *Element) Hover() error {
err := el.WaitVisible()
if err != nil {
return err
}
err = el.ScrollIntoView()
if err != nil {
return err
}
box, err := el.Box()
if err != nil {
return err
}
err = el.page.Mouse.Move(box.CenterX(), box.CenterY(), 1)
if err != nil {
return err
}
return nil
}
// Click will press then release the button just like a human.
func (el *Element) Click(button proto.InputMouseButton) error {
err := el.Hover()
if err != nil {
return err
}
err = el.checkClickable()
if err != nil {
return err
}
defer el.tryTraceInput(string(button) + " click")()
return el.page.Mouse.Click(button)
}
// Tap the button just like a human.
func (el *Element) Tap() error {
err := el.WaitVisible()
if err != nil {
return err
}
err = el.ScrollIntoView()
if err != nil {
return err
}
err = el.checkClickable()
if err != nil {
return err
}
box, err := el.Box()
if err != nil {
return err
}
defer el.tryTraceInput("tap")()
return el.page.Touch.Tap(box.CenterX(), box.CenterY())
}
func (el *Element) checkClickable() error {
clickable, err := el.Clickable()
if err != nil {
return err
}
if !clickable {
s, err := el.HTML()
if err != nil {
return err
}
return newErr(ErrNotClickable, s, "such as covered by a modal")
}
return nil
}
// Clickable checks if the element is behind another element, such as when invisible or covered by a modal.
func (el *Element) Clickable() (bool, error) {
box, err := el.Box()
if err != nil {
return false, err
}
scroll, err := el.page.Root().Eval(`{ x: window.scrollX, y: window.scrollY }`)
if err != nil {
return false, err
}
elAtPoint, err := el.page.ElementFromPoint(
int64(box.CenterX())+scroll.Value.Get("x").Int(),
int64(box.CenterY())+scroll.Value.Get("y").Int(),
)
if err != nil {
return false, err
}
contains, err := el.ContainsElement(elAtPoint)
if err != nil {
return false, err
}
if contains {
return true, nil
}
return false, nil
}
// Box returns the size of an element and its position relative to the main frame.
func (el *Element) Box() (*proto.DOMRect, error) {
res, err := proto.DOMGetBoxModel{ObjectID: el.ObjectID}.Call(el)
if err != nil {
return nil, err
}
return res.Model.Rect(), nil
}
// Press a key
func (el *Element) Press(key rune) error {
err := el.WaitVisible()
if err != nil {
return err
}
err = el.Focus()
if err != nil {
return err
}
defer el.tryTraceInput("press " + input.Keys[key].Key)()
return el.page.Keyboard.Press(key)
}
// SelectText selects the text that matches the regular expression
func (el *Element) SelectText(regex string) error {
err := el.Focus()
if err != nil {
return err
}
defer el.tryTraceInput("select text: " + regex)()
el.page.browser.trySlowmotion()
_, err = el.EvalWithOptions(jsHelper(js.SelectText, JSArgs{regex}).ByUser())
return err
}
// SelectAllText selects all text
func (el *Element) SelectAllText() error {
err := el.Focus()
if err != nil {
return err
}
defer el.tryTraceInput("select all text")()
el.page.browser.trySlowmotion()
_, err = el.EvalWithOptions(jsHelper(js.SelectAllText, nil).ByUser())
return err
}
// Input focus the element and input text to it.
// To empty the input you can use something like el.SelectAllText().MustInput("")
func (el *Element) Input(text string) error {
err := el.WaitVisible()
if err != nil {
return err
}
err = el.Focus()
if err != nil {
return err
}
defer el.tryTraceInput("input " + text)()
err = el.page.Keyboard.InsertText(text)
if err != nil {
return err
}
_, err = el.EvalWithOptions(jsHelper(js.InputEvent, nil).ByUser())
return err
}
// Blur is similar to the method Blur
func (el *Element) Blur() error {
_, err := el.EvalWithOptions(NewEvalOptions("this.blur()", nil).ByUser())
return err
}
// Select the children option elements that match the selectors, the selector can be text content or css selector
func (el *Element) Select(selectors []string) error {
err := el.WaitVisible()
if err != nil {
return err
}
defer el.tryTraceInput(fmt.Sprintf(`select "%s"`, strings.Join(selectors, "; ")))()
el.page.browser.trySlowmotion()
_, err = el.EvalWithOptions(jsHelper(js.Select, JSArgs{selectors}).ByUser())
return err
}
// Matches checks if the element can be selected by the css selector
func (el *Element) Matches(selector string) (bool, error) {
res, err := el.Eval(`s => this.matches(s)`, selector)
if err != nil {
return false, err
}
return res.Value.Bool(), nil
}
// Attribute is similar to the method Attribute
func (el *Element) Attribute(name string) (*string, error) {
attr, err := el.Eval("(n) => this.getAttribute(n)", name)
if err != nil {
return nil, err
}
if attr.Value.Type == gjson.Null {
return nil, nil
}
return &attr.Value.Str, nil
}
// Property is similar to the method Property
func (el *Element) Property(name string) (proto.JSON, error) {
prop, err := el.Eval("(n) => this[n]", name)
if err != nil {
return proto.JSON{}, err
}
return prop.Value, nil
}
// SetFiles of the current file input element
func (el *Element) SetFiles(paths []string) error {
absPaths := []string{}
for _, p := range paths {
absPath, err := filepath.Abs(p)
utils.E(err)
absPaths = append(absPaths, absPath)
}
defer el.tryTraceInput(fmt.Sprintf("set files: %v", absPaths))()
el.page.browser.trySlowmotion()
err := proto.DOMSetFileInputFiles{
Files: absPaths,
ObjectID: el.ObjectID,
}.Call(el)
return err
}
// Describe the current element
func (el *Element) Describe(depth int, pierce bool) (*proto.DOMNode, error) {
val, err := proto.DOMDescribeNode{ObjectID: el.ObjectID, Depth: int64(depth), Pierce: pierce}.Call(el)
if err != nil {
return nil, err
}
return val.Node, nil
}
// NodeID of the node
func (el *Element) NodeID() (proto.DOMNodeID, error) {
el.page.enableNodeQuery()
node, err := proto.DOMRequestNode{ObjectID: el.ObjectID}.Call(el)
if err != nil {
return 0, err
}
return node.NodeID, nil
}
// ShadowRoot returns the shadow root of this element
func (el *Element) ShadowRoot() (*Element, error) {
node, err := el.Describe(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, error) {
node, err := el.Describe(1, false)
if err != nil {
return nil, err
}
newPage := *el.page
newPage.FrameID = node.FrameID
newPage.element = el
newPage.jsHelperObjectID = ""
newPage.windowObjectID = ""
return &newPage, nil
}
// ContainsElement check if the target is equal or inside the element.
func (el *Element) ContainsElement(target *Element) (bool, error) {
res, err := el.EvalWithOptions(jsHelper(js.ContainsElement, JSArgs{target.ObjectID}))
if err != nil {
return false, err
}
return res.Value.Bool(), nil
}
// Text that the element displays
func (el *Element) Text() (string, error) {
str, err := el.EvalWithOptions(jsHelper(js.Text, nil))
if err != nil {
return "", err
}
return str.Value.String(), nil
}
// HTML of the element
func (el *Element) HTML() (string, error) {
str, err := el.Eval(`this.outerHTML`)
if err != nil {
return "", err
}
return str.Value.String(), nil
}
// Visible returns true if the element is visible on the page
func (el *Element) Visible() (bool, error) {
res, err := el.EvalWithOptions(jsHelper(js.Visible, nil))
if err != nil {
return false, err
}
return res.Value.Bool(), nil
}
// WaitLoad for element like <img>
func (el *Element) WaitLoad() error {
_, err := el.EvalWithOptions(jsHelper(js.WaitLoad, nil))
return err
}
// WaitStable not using requestAnimation here because it can trigger to many checks,
// or miss checks for jQuery css animation.
func (el *Element) WaitStable(interval time.Duration) error {
err := el.WaitVisible()
if err != nil {
return err
}
box, err := el.Box()
if err != nil {
return err
}
t := time.NewTicker(interval)
defer t.Stop()
for {
select {
case <-t.C:
case <-el.ctx.Done():
return el.ctx.Err()
}
current, err := el.Box()
if err != nil {
return err
}
if *box == *current {
break
}
box = current
}
return nil
}
// Wait until the js returns true
func (el *Element) Wait(js string, params ...interface{}) error {
return utils.Retry(el.ctx, el.sleeper(), func() (bool, error) {
res, err := el.Eval(js, params...)
if err != nil {
return true, err
}
if res.Value.Bool() {
return true, nil
}
return false, nil
})
}
// WaitVisible until the element is visible
func (el *Element) WaitVisible() error {
opts := jsHelper(js.Visible, nil)
return el.Wait(opts.JS, opts.JSArgs...)
}
// WaitInvisible until the element invisible
func (el *Element) WaitInvisible() error {
opts := jsHelper(js.Invisible, nil)
return el.Wait(opts.JS, opts.JSArgs...)
}
// CanvasToImage 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) CanvasToImage(format string, quality float64) ([]byte, error) {
res, err := el.Eval(`(format, quality) => this.toDataURL(format, quality)`, format, quality)
if err != nil {
return nil, err
}
_, bin := parseDataURI(res.Value.Str)
return bin, nil
}
// Resource returns the "src" content of current element. Such as the jpg of <img src="a.jpg">
func (el *Element) Resource() ([]byte, error) {
src, err := el.EvalWithOptions(jsHelper(js.Resource, nil))
if err != nil {
return nil, err
}
res, err := proto.PageGetResourceContent{
FrameID: el.page.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)
utils.E(err)
} else {
bin = []byte(data)
}
return bin, nil
}
// Screenshot of the area of the element
func (el *Element) Screenshot(format proto.PageCaptureScreenshotFormat, quality int) ([]byte, error) {
err := el.WaitVisible()
if err != nil {
return nil, err
}
err = el.ScrollIntoView()
if err != nil {
return nil, err
}
box, err := el.Box()
if err != nil {
return nil, err
}
opts := &proto.PageCaptureScreenshot{
Format: format,
Clip: &proto.PageViewport{
X: box.X,
Y: box.Y,
Width: box.Width,
Height: box.Height,
Scale: 1,
},
}
return el.page.Root().Screenshot(false, opts)
}
// Release the remote object reference
func (el *Element) Release() error {
return el.page.Context(el.ctx).Release(el.ObjectID)
}
// CallContext parameters for proto
func (el *Element) CallContext() (context.Context, proto.Client, string) {
return el.ctx, el.page.browser, string(el.page.SessionID)
}
// Eval js on the page. For more info check the Element.EvalWithOptions
func (el *Element) Eval(js string, params ...interface{}) (*proto.RuntimeRemoteObject, error) {
return el.EvalWithOptions(NewEvalOptions(js, params))
}
// EvalWithOptions is just a shortcut of Page.EvalWithOptions with ThisID set to current element.
func (el *Element) EvalWithOptions(opts *EvalOptions) (*proto.RuntimeRemoteObject, error) {
return el.page.Context(el.ctx).EvalWithOptions(opts.This(el.ObjectID))
}
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.Elements("iframe")
if err != nil {
return err
}
for _, f := range list {
p, err := f.Frame()
if err != nil {
return err
}
objID, err := p.resolveNode(nodeID)
if err != nil {
return err
}
if objID != "" {
el.page = p
el.ObjectID = objID
return io.EOF
}
err = walk(p)
if err != nil {
return err
}
}
return nil
}
err = walk(el.page)
if err == io.EOF {
return nil
}
return err
}