mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
1af8b37a0f
* New type system * Fixed dot notation for HTML elements
51 lines
1.2 KiB
Go
51 lines
1.2 KiB
Go
package html
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values/types"
|
|
)
|
|
|
|
// WaitElement waits for element to appear in the DOM.
|
|
// Stops the execution until it finds an element or operation times out.
|
|
// @param doc (HTMLDocument) - Dynamic HTMLDocument.
|
|
// @param selector (String) - Target element's selector.
|
|
// @param timeout (Int, optional) - Optional timeout. Default 5000 ms.
|
|
func WaitElement(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
err := core.ValidateArgs(args, 2, 3)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
arg := args[0]
|
|
selector := args[1].String()
|
|
timeout := values.NewInt(defaultTimeout)
|
|
|
|
if len(args) > 2 {
|
|
err = core.ValidateType(args[2], types.Int)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
timeout = args[2].(values.Int)
|
|
}
|
|
|
|
err = core.ValidateType(arg, types.HTMLDocument)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
doc, ok := arg.(values.DHTMLDocument)
|
|
|
|
if !ok {
|
|
return values.None, core.Errors(core.ErrInvalidType, ErrNotDynamic)
|
|
}
|
|
|
|
return values.None, doc.WaitForSelector(values.NewString(selector), timeout)
|
|
}
|