mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
6e15846d0f
* Added Context to HTML methods * Fixed unit tests * Updated timeout * Fixed WAIT_CLASS timeout
39 lines
854 B
Go
39 lines
854 B
Go
package html
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/MontFerret/ferret/pkg/drivers"
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
)
|
|
|
|
// 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(ctx 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, drivers.HTMLDocumentType)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
doc, err := toDocument(args[0])
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
return doc.ClickBySelectorAll(ctx, values.NewString(selector))
|
|
}
|