Fixing Evaluate and EvaluateAsDevTools actions
- Update Evaluate action to also work with []byte - Update Evaluate documentation - Fix EvaluateAsDevTools action - Refactor Query actions to use EvaluateAsDevTools
This commit is contained in:
parent
465e7becad
commit
b57afce7e7
61
eval.go
61
eval.go
|
@ -8,12 +8,21 @@ import (
|
||||||
rundom "github.com/knq/chromedp/cdp/runtime"
|
rundom "github.com/knq/chromedp/cdp/runtime"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Evaluate evaluates the supplied Javascript expression, attempting to
|
// Evaluate evaluates the Javascript expression, unmarshaling the result of the
|
||||||
// unmarshal the resulting value into res.
|
// script evaluation to res.
|
||||||
//
|
//
|
||||||
// If res is a **chromedp/cdp/runtime.RemoteObject, then it will be set to the
|
// If res is *[]byte, then the result of the script evaluation will be returned
|
||||||
// raw, returned RuntimeObject, Otherwise, the result value be json.Unmarshal'd
|
// "by value" (ie, JSON-encoded) and res will be set to the raw value.
|
||||||
// to res.
|
//
|
||||||
|
// Alternatively, if res is **chromedp/cdp/runtime.RemoteObject, then it will
|
||||||
|
// be set to the returned RemoteObject and no attempt will be made to convert
|
||||||
|
// the value to an equivalent Go type.
|
||||||
|
//
|
||||||
|
// Otherwise, if res is any other Go type, the result of the script evaluation
|
||||||
|
// will be returned "by value" (ie, JSON-encoded), and subsequently will be
|
||||||
|
// json.Unmarshal'd into res.
|
||||||
|
//
|
||||||
|
// Note: any exception encountered will be returned as an error.
|
||||||
func Evaluate(expression string, res interface{}, opts ...EvaluateOption) Action {
|
func Evaluate(expression string, res interface{}, opts ...EvaluateOption) Action {
|
||||||
if res == nil {
|
if res == nil {
|
||||||
panic("res cannot be nil")
|
panic("res cannot be nil")
|
||||||
|
@ -22,12 +31,11 @@ func Evaluate(expression string, res interface{}, opts ...EvaluateOption) Action
|
||||||
return ActionFunc(func(ctxt context.Context, h cdp.FrameHandler) error {
|
return ActionFunc(func(ctxt context.Context, h cdp.FrameHandler) error {
|
||||||
var err error
|
var err error
|
||||||
|
|
||||||
// check if we want a 'raw' result
|
|
||||||
obj, raw := res.(**rundom.RemoteObject)
|
|
||||||
|
|
||||||
// set up parameters
|
// set up parameters
|
||||||
p := rundom.Evaluate(expression)
|
p := rundom.Evaluate(expression)
|
||||||
if !raw {
|
switch res.(type) {
|
||||||
|
case **rundom.RemoteObject:
|
||||||
|
default:
|
||||||
p = p.WithReturnByValue(true)
|
p = p.WithReturnByValue(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -45,8 +53,13 @@ func Evaluate(expression string, res interface{}, opts ...EvaluateOption) Action
|
||||||
return exp
|
return exp
|
||||||
}
|
}
|
||||||
|
|
||||||
if raw {
|
switch x := res.(type) {
|
||||||
*obj = v
|
case **rundom.RemoteObject:
|
||||||
|
*x = v
|
||||||
|
return nil
|
||||||
|
|
||||||
|
case *[]byte:
|
||||||
|
*x = []byte(v.Value)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,39 +68,41 @@ func Evaluate(expression string, res interface{}, opts ...EvaluateOption) Action
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// EvaluateAsDevTools is an action that evaluates a Javascript expression in
|
||||||
|
// the same context as Chrome DevTools would, exposing the Command Line API to
|
||||||
|
// the script evaluating the expression in the "console" context.
|
||||||
|
//
|
||||||
|
// Note: this should not be used with any untrusted code.
|
||||||
|
func EvaluateAsDevTools(expression string, res interface{}, opts ...EvaluateOption) Action {
|
||||||
|
return Evaluate(expression, res, append(opts, EvalObjectGroup("console"), EvalWithCommandLineAPI)...)
|
||||||
|
}
|
||||||
|
|
||||||
// EvaluateOption is an Evaluate call option.
|
// EvaluateOption is an Evaluate call option.
|
||||||
type EvaluateOption func(*rundom.EvaluateParams) *rundom.EvaluateParams
|
type EvaluateOption func(*rundom.EvaluateParams) *rundom.EvaluateParams
|
||||||
|
|
||||||
// EvalObjectGroup is a Evaluate option to set the object group.
|
// EvalObjectGroup is a evaluate option to set the object group.
|
||||||
func EvalObjectGroup(objectGroup string) EvaluateOption {
|
func EvalObjectGroup(objectGroup string) EvaluateOption {
|
||||||
return func(p *rundom.EvaluateParams) *rundom.EvaluateParams {
|
return func(p *rundom.EvaluateParams) *rundom.EvaluateParams {
|
||||||
return p.WithObjectGroup(objectGroup)
|
return p.WithObjectGroup(objectGroup)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// EvalWithCommandLineAPI is an Evaluate option to include the DevTools Command
|
// EvalWithCommandLineAPI is an evaluate option to make the DevTools Command
|
||||||
// Line API.
|
// Line API available to the evaluated script.
|
||||||
//
|
//
|
||||||
// Note: this should not be used with any untrusted code.
|
// Note: this should not be used with any untrusted code.
|
||||||
func EvalWithCommandLineAPI(p *rundom.EvaluateParams) *rundom.EvaluateParams {
|
func EvalWithCommandLineAPI(p *rundom.EvaluateParams) *rundom.EvaluateParams {
|
||||||
return p.WithIncludeCommandLineAPI(true)
|
return p.WithIncludeCommandLineAPI(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
// EvalSilent is a Evaluate option that will cause script evaluation to ignore
|
// EvalSilent is a evaluate option that will cause script evaluation to ignore
|
||||||
// exceptions.
|
// exceptions.
|
||||||
func EvalSilent(p *rundom.EvaluateParams) *rundom.EvaluateParams {
|
func EvalSilent(p *rundom.EvaluateParams) *rundom.EvaluateParams {
|
||||||
return p.WithSilent(true)
|
return p.WithSilent(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
// EvalAsValue is a Evaluate option that will case the script to encode its
|
// EvalAsValue is a evaluate option that will case the script to encode its
|
||||||
// result as a value.
|
// result as a value.
|
||||||
func EvalAsValue(p *rundom.EvaluateParams) *rundom.EvaluateParams {
|
func EvalAsValue(p *rundom.EvaluateParams) *rundom.EvaluateParams {
|
||||||
return p.WithReturnByValue(true)
|
return p.WithReturnByValue(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
// EvaluateAsDevTools evaluates a Javascript expression in the same
|
|
||||||
//
|
|
||||||
// Note: this should not be used with any untrusted code.
|
|
||||||
func EvaluateAsDevTools(expression string) Action {
|
|
||||||
return Evaluate(expression, EvalObjectGroup("console"), EvalWithCommandLineAPI)
|
|
||||||
}
|
|
||||||
|
|
109
query.go
109
query.go
|
@ -3,7 +3,6 @@ package chromedp
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"image"
|
"image"
|
||||||
|
@ -16,7 +15,6 @@ import (
|
||||||
"github.com/knq/chromedp/cdp/dom"
|
"github.com/knq/chromedp/cdp/dom"
|
||||||
"github.com/knq/chromedp/cdp/input"
|
"github.com/knq/chromedp/cdp/input"
|
||||||
"github.com/knq/chromedp/cdp/page"
|
"github.com/knq/chromedp/cdp/page"
|
||||||
rundom "github.com/knq/chromedp/cdp/runtime"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -128,29 +126,13 @@ func Value(sel interface{}, value *string, opts ...QueryOption) Action {
|
||||||
if value == nil {
|
if value == nil {
|
||||||
panic("value cannot be nil")
|
panic("value cannot be nil")
|
||||||
}
|
}
|
||||||
|
|
||||||
return QueryAfter(sel, func(ctxt context.Context, h cdp.FrameHandler, nodes ...*cdp.Node) error {
|
return QueryAfter(sel, func(ctxt context.Context, h cdp.FrameHandler, nodes ...*cdp.Node) error {
|
||||||
if len(nodes) < 1 {
|
if len(nodes) < 1 {
|
||||||
return fmt.Errorf("selector `%s` did not return any nodes", sel)
|
return fmt.Errorf("selector `%s` did not return any nodes", sel)
|
||||||
}
|
}
|
||||||
|
|
||||||
p := rundom.Evaluate(fmt.Sprintf(valueJS, nodes[0].FullXPath()))
|
return EvaluateAsDevTools(fmt.Sprintf(valueJS, nodes[0].FullXPath()), value).Do(ctxt, h)
|
||||||
p.IncludeCommandLineAPI = true
|
|
||||||
p.ObjectGroup = "console"
|
|
||||||
|
|
||||||
res, exp, err := p.Do(ctxt, h)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if exp != nil {
|
|
||||||
return exp
|
|
||||||
}
|
|
||||||
if res.Type != rundom.TypeString || len(res.Value) < 2 {
|
|
||||||
return fmt.Errorf("expected string of at least length 2, got %s length %d", res.Subtype, len(res.Value))
|
|
||||||
}
|
|
||||||
|
|
||||||
*value = string(res.Value[1 : len(res.Value)-1])
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}, opts...)
|
}, opts...)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -161,19 +143,13 @@ func SetValue(sel interface{}, value string, opts ...QueryOption) Action {
|
||||||
return fmt.Errorf("selector `%s` did not return any nodes", sel)
|
return fmt.Errorf("selector `%s` did not return any nodes", sel)
|
||||||
}
|
}
|
||||||
|
|
||||||
p := rundom.Evaluate(fmt.Sprintf(setValueJS, nodes[0].FullXPath(), value))
|
var res string
|
||||||
p.IncludeCommandLineAPI = true
|
err := EvaluateAsDevTools(fmt.Sprintf(setValueJS, nodes[0].FullXPath(), value), &res).Do(ctxt, h)
|
||||||
p.ObjectGroup = "console"
|
|
||||||
|
|
||||||
res, exp, err := p.Do(ctxt, h)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if exp != nil {
|
if res != value {
|
||||||
return exp
|
return fmt.Errorf("could not set value on node %d", nodes[0].NodeID)
|
||||||
}
|
|
||||||
if res.Type != rundom.TypeString || len(res.Value) < 2 {
|
|
||||||
return fmt.Errorf("expected string of at least length 2, got %s length %d", res.Subtype, len(res.Value))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
@ -190,24 +166,7 @@ func Text(sel interface{}, text *string, opts ...QueryOption) Action {
|
||||||
return fmt.Errorf("selector `%s` did not return any nodes", sel)
|
return fmt.Errorf("selector `%s` did not return any nodes", sel)
|
||||||
}
|
}
|
||||||
|
|
||||||
p := rundom.Evaluate(fmt.Sprintf(textJS, nodes[0].FullXPath()))
|
return EvaluateAsDevTools(fmt.Sprintf(textJS, nodes[0].FullXPath()), text).Do(ctxt, h)
|
||||||
p.IncludeCommandLineAPI = true
|
|
||||||
p.ObjectGroup = "console"
|
|
||||||
|
|
||||||
res, exp, err := p.Do(ctxt, h)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if exp != nil {
|
|
||||||
return exp
|
|
||||||
}
|
|
||||||
if res.Type != rundom.TypeString || len(res.Value) < 2 {
|
|
||||||
return fmt.Errorf("expected string of at least length 2, got %s length %d", res.Subtype, len(res.Value))
|
|
||||||
}
|
|
||||||
|
|
||||||
*text = string(res.Value[1 : len(res.Value)-1])
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}, opts...)
|
}, opts...)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -372,21 +331,9 @@ func Screenshot(sel interface{}, picbuf *[]byte, opts ...QueryOption) Action {
|
||||||
return ErrInvalidBoxModel
|
return ErrInvalidBoxModel
|
||||||
}
|
}
|
||||||
|
|
||||||
// evaluate scroll script
|
// scroll to node location
|
||||||
res, exp, err := rundom.Evaluate(fmt.Sprintf(scrollJS, int64(box.Margin[0]), int64(box.Margin[1]))).Do(ctxt, h)
|
var pos []int
|
||||||
if err != nil {
|
err = EvaluateAsDevTools(fmt.Sprintf(scrollJS, int64(box.Margin[0]), int64(box.Margin[1])), &pos).Do(ctxt, h)
|
||||||
return err
|
|
||||||
}
|
|
||||||
if exp != nil {
|
|
||||||
return exp
|
|
||||||
}
|
|
||||||
if res.Type != rundom.TypeString || len(res.Value) < 2 {
|
|
||||||
return fmt.Errorf("expected string of at least length 2, got %s length %d", res.Subtype, len(res.Value))
|
|
||||||
}
|
|
||||||
|
|
||||||
// parse response
|
|
||||||
var scroll []int
|
|
||||||
err = json.Unmarshal([]byte(res.Value[1:len(res.Value)-1]), &scroll)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -405,8 +352,8 @@ func Screenshot(sel interface{}, picbuf *[]byte, opts ...QueryOption) Action {
|
||||||
|
|
||||||
// crop to box model contents.
|
// crop to box model contents.
|
||||||
cropped := imaging.Crop(img, image.Rect(
|
cropped := imaging.Crop(img, image.Rect(
|
||||||
int(box.Margin[0])-scroll[0], int(box.Margin[1])-scroll[1],
|
int(box.Margin[0])-pos[0], int(box.Margin[1])-pos[1],
|
||||||
int(box.Margin[4])-scroll[0], int(box.Margin[5])-scroll[1],
|
int(box.Margin[4])-pos[0], int(box.Margin[5])-pos[1],
|
||||||
))
|
))
|
||||||
|
|
||||||
// encode
|
// encode
|
||||||
|
@ -429,19 +376,14 @@ func Submit(sel interface{}, opts ...QueryOption) Action {
|
||||||
return fmt.Errorf("selector `%s` did not return any nodes", sel)
|
return fmt.Errorf("selector `%s` did not return any nodes", sel)
|
||||||
}
|
}
|
||||||
|
|
||||||
p := rundom.Evaluate(fmt.Sprintf(submitJS, nodes[0].FullXPath()))
|
var res bool
|
||||||
p.IncludeCommandLineAPI = true
|
err := EvaluateAsDevTools(fmt.Sprintf(submitJS, nodes[0].FullXPath()), &res).Do(ctxt, h)
|
||||||
p.ObjectGroup = "console"
|
|
||||||
|
|
||||||
res, exp, err := p.Do(ctxt, h)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if exp != nil {
|
|
||||||
return exp
|
if !res {
|
||||||
}
|
return fmt.Errorf("submit on node %d returned false", nodes[0].NodeID)
|
||||||
if res.Type != rundom.TypeString || len(res.Value) < 2 {
|
|
||||||
return fmt.Errorf("expected string of at least length 2, got %s length %d", res.Subtype, len(res.Value))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
@ -449,6 +391,8 @@ func Submit(sel interface{}, opts ...QueryOption) Action {
|
||||||
}
|
}
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
// textJS is a javascript snippet that returns the concatenated textContent
|
||||||
|
// of all visible (ie, offsetParent !== null) children.
|
||||||
textJS = `(function(a) {
|
textJS = `(function(a) {
|
||||||
var s = '';
|
var s = '';
|
||||||
for (var i = 0; i < a.length; i++) {
|
for (var i = 0; i < a.length; i++) {
|
||||||
|
@ -459,22 +403,31 @@ const (
|
||||||
return s;
|
return s;
|
||||||
})($x("%s/node()"))`
|
})($x("%s/node()"))`
|
||||||
|
|
||||||
|
// scrollJS is a javascript snippet that scrolls the window to the
|
||||||
|
// specified x, y coordinates and then returns the actual window x/y after
|
||||||
|
// execution.
|
||||||
scrollJS = `(function(x, y) {
|
scrollJS = `(function(x, y) {
|
||||||
window.scrollTo(x, y);
|
window.scrollTo(x, y);
|
||||||
return '['+window.scrollX+','+window.scrollY+']';
|
return [window.scrollX, window.scrollY];
|
||||||
})(%d, %d)`
|
})(%d, %d)`
|
||||||
|
|
||||||
|
// submitJS is a javascript snippet that will call the containing form's
|
||||||
|
// submit function, returning true or false if the call was successful.
|
||||||
submitJS = `(function(a) {
|
submitJS = `(function(a) {
|
||||||
if (a[0].form !== null) {
|
if (a[0].form !== null) {
|
||||||
return "" + a[0].form.submit();
|
return a[0].form.submit();
|
||||||
}
|
}
|
||||||
return 'false';
|
return false;
|
||||||
})($x('%s'))`
|
})($x('%s'))`
|
||||||
|
|
||||||
|
// valueJS is a javascript snippet that returns the value of a specified
|
||||||
|
// node.
|
||||||
valueJS = `(function(a) {
|
valueJS = `(function(a) {
|
||||||
return a[0].value;
|
return a[0].value;
|
||||||
})($x('%s'))`
|
})($x('%s'))`
|
||||||
|
|
||||||
|
// setValueJS is a javascript snippet that sets the value of the specified
|
||||||
|
// node, and returns the value.
|
||||||
setValueJS = `(function(a, val) {
|
setValueJS = `(function(a, val) {
|
||||||
return a[0].value = val;
|
return a[0].value = val;
|
||||||
})($x('%s'), '%s')`
|
})($x('%s'), '%s')`
|
||||||
|
|
Loading…
Reference in New Issue
Block a user