2018-11-15 21:33:53 +02:00
|
|
|
package html
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2018-12-22 06:14:41 +02:00
|
|
|
|
2019-02-20 01:10:18 +02:00
|
|
|
"github.com/MontFerret/ferret/pkg/drivers"
|
2018-11-15 21:33:53 +02:00
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
2019-02-13 19:31:18 +02:00
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/values/types"
|
2018-11-15 21:33:53 +02:00
|
|
|
)
|
|
|
|
|
2019-09-07 20:03:17 +02:00
|
|
|
// HOVER fetches an element with selector, scrolls it into view if needed, and then uses page.mouse to hover over the center of the element.
|
2018-11-15 21:33:53 +02:00
|
|
|
// If there's no element matching selector, the method returns an error.
|
|
|
|
// @param docOrEl (HTMLDocument|HTMLElement) - Target document or element.
|
|
|
|
// @param selector (String, options) - If document is passed, this param must represent an element selector.
|
2019-02-21 04:24:05 +02:00
|
|
|
func Hover(ctx context.Context, args ...core.Value) (core.Value, error) {
|
2018-11-15 21:33:53 +02:00
|
|
|
err := core.ValidateArgs(args, 1, 2)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
2019-09-07 05:15:27 +02:00
|
|
|
el, err := drivers.ToElement(args[0])
|
2018-11-15 21:33:53 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
2019-09-07 05:15:27 +02:00
|
|
|
if len(args) == 1 {
|
|
|
|
return values.None, el.Hover(ctx)
|
2018-11-15 21:33:53 +02:00
|
|
|
}
|
|
|
|
|
2019-09-07 05:15:27 +02:00
|
|
|
err = core.ValidateType(args[1], types.String)
|
2019-02-24 00:52:01 +02:00
|
|
|
|
2019-09-07 05:15:27 +02:00
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
2019-02-24 00:52:01 +02:00
|
|
|
}
|
2019-09-07 05:15:27 +02:00
|
|
|
|
|
|
|
return values.None, el.HoverBySelector(ctx, values.ToString(args[1]))
|
2018-11-15 21:33:53 +02:00
|
|
|
}
|