forked from ydcool/rod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelement.go
577 lines (478 loc) · 12.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
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
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/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 doc is similar to the method MustFocus
func (el *Element) Focus() error {
err := el.ScrollIntoView()
if err != nil {
return err
}
_, err = el.Eval(`this.focus()`)
return err
}
// ScrollIntoView doc is similar to the method MustScrollIntoViewIfNeeded
func (el *Element) ScrollIntoView() error {
defer el.traceAction("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
}
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")
}
defer el.traceAction(string(button) + " click")()
return el.page.Mouse.Click(button)
}
// 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 doc is similar to the method MustPress
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.traceAction("press " + string(key))()
return el.page.Keyboard.Press(key)
}
// SelectText doc is similar to the method MustSelectText
func (el *Element) SelectText(regex string) error {
err := el.Focus()
if err != nil {
return err
}
defer el.traceAction("select text: " + regex)()
el.page.browser.trySlowmotion()
_, err = el.EvalWithOptions(jsHelper(js.SelectText, JSArgs{regex}))
return err
}
// SelectAllText doc is similar to the method MustSelectAllText
func (el *Element) SelectAllText() error {
err := el.Focus()
if err != nil {
return err
}
defer el.traceAction("select all text")()
el.page.browser.trySlowmotion()
_, err = el.EvalWithOptions(jsHelper(js.SelectAllText, nil))
return err
}
// Input doc is similar to the method 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.traceAction("input " + text)()
err = el.page.Keyboard.InsertText(text)
if err != nil {
return err
}
_, err = el.EvalWithOptions(jsHelper(js.InputEvent, nil))
return err
}
// Blur is similar to the method Blur
func (el *Element) Blur() error {
_, err := el.Eval("this.blur()")
return err
}
// Select doc is similar to the method MustSelect
func (el *Element) Select(selectors []string) error {
err := el.WaitVisible()
if err != nil {
return err
}
defer el.traceAction(fmt.Sprintf(
`select "%s"`,
strings.Join(selectors, "; ")))()
el.page.browser.trySlowmotion()
_, err = el.EvalWithOptions(jsHelper(js.Select, JSArgs{selectors}))
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 doc is similar to the method MustSetFiles
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.traceAction(fmt.Sprintf("set files: %v", absPaths))
el.page.browser.trySlowmotion()
err := proto.DOMSetFileInputFiles{
Files: absPaths,
ObjectID: el.ObjectID,
}.Call(el)
return err
}
// Describe doc is similar to the method MustDescribe
// please see https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-describeNode
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 doc is similar to the method MustText
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 doc is similar to the method MustHTML
func (el *Element) HTML() (string, error) {
str, err := el.Eval(`this.outerHTML`)
if err != nil {
return "", err
}
return str.Value.String(), nil
}
// Visible doc is similar to the method MustVisible
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 doc is similar to the method MustWait
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 doc is similar to the method MustWaitVisible
func (el *Element) WaitVisible() error {
opts := jsHelper(js.Visible, nil)
return el.Wait(opts.JS, opts.JSArgs...)
}
// WaitInvisible doc is similar to the method MustWaitInvisible
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 doc is similar to the method MustResource
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 doc is similar to the method MustRelease
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 doc is similar to the method MustEval
func (el *Element) Eval(js string, params ...interface{}) (*proto.RuntimeRemoteObject, error) {
return el.EvalWithOptions(NewEvalOptions(js, params))
}
// EvalWithOptions of Eval
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
}