1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-14 11:23:02 +02:00
ferret/pkg/stdlib/html/click.go
Tim Voronov 6e15846d0f
Added Context to HTML methods (#235)
* Added Context to HTML methods

* Fixed unit tests

* Updated timeout

* Fixed WAIT_CLASS timeout
2019-02-20 21:24:05 -05:00

42 lines
856 B
Go

package html
import (
"context"
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/values"
)
// Click dispatches click event on a given element
// @param source (Document | Element) - Event source.
// @param selector (String, optional) - Optional selector. Only used when a document instance is passed.
func Click(ctx context.Context, args ...core.Value) (core.Value, error) {
err := core.ValidateArgs(args, 1, 2)
if err != nil {
return values.False, err
}
// CLICK(el)
if len(args) == 1 {
el, err := toElement(args[0])
if err != nil {
return values.False, err
}
return el.Click(ctx)
}
// CLICK(doc, selector)
doc, err := toDocument(args[0])
if err != nil {
return values.False, err
}
selector := args[1].String()
return doc.ClickBySelector(ctx, values.NewString(selector))
}