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
42 lines
856 B
Go
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))
|
|
}
|