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
|
|
|
)
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
// 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.
|
|
|
|
func Hover(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
|
|
err := core.ValidateArgs(args, 1, 2)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// document or element
|
2019-02-20 01:10:18 +02:00
|
|
|
err = core.ValidateType(args[0], drivers.HTMLDocumentType, drivers.HTMLElementType)
|
2018-11-15 21:33:53 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(args) == 2 {
|
2019-02-13 19:31:18 +02:00
|
|
|
err = core.ValidateType(args[1], types.String)
|
2018-11-15 21:33:53 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Document with a selector
|
2019-02-20 01:10:18 +02:00
|
|
|
doc := args[0].(drivers.HTMLDocument)
|
2018-11-15 21:33:53 +02:00
|
|
|
selector := args[1].(values.String)
|
|
|
|
|
|
|
|
return values.None, doc.HoverBySelector(selector)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Element
|
2019-02-20 01:10:18 +02:00
|
|
|
el := args[0].(drivers.HTMLElement)
|
2018-11-15 21:33:53 +02:00
|
|
|
|
|
|
|
return values.None, el.Hover()
|
|
|
|
}
|