mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
1af8b37a0f
* New type system * Fixed dot notation for HTML elements
39 lines
899 B
Go
39 lines
899 B
Go
package html
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values/types"
|
|
)
|
|
|
|
// ClickAll dispatches click event on all matched element
|
|
// @param source (Document) - Document.
|
|
// @param selector (String) - Selector.
|
|
// @returns (Boolean) - Returns true if matched at least one element.
|
|
func ClickAll(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
err := core.ValidateArgs(args, 2, 2)
|
|
|
|
if err != nil {
|
|
return values.False, err
|
|
}
|
|
|
|
arg1 := args[0]
|
|
selector := args[1].String()
|
|
|
|
err = core.ValidateType(arg1, types.HTMLDocument)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
doc, ok := arg1.(values.DHTMLDocument)
|
|
|
|
if !ok {
|
|
return values.False, core.Errors(core.ErrInvalidType, ErrNotDynamic)
|
|
}
|
|
|
|
return doc.ClickBySelectorAll(values.NewString(selector))
|
|
}
|