mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
52 lines
1.2 KiB
Go
52 lines
1.2 KiB
Go
package html
|
|
|
|
import (
|
|
"context"
|
|
"github.com/MontFerret/ferret/pkg/html/dynamic"
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
)
|
|
|
|
/*
|
|
* 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], core.IntType)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
timeout = args[2].(values.Int)
|
|
}
|
|
|
|
err = core.ValidateType(arg, core.HTMLDocumentType)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
doc, ok := arg.(*dynamic.HTMLDocument)
|
|
|
|
if !ok {
|
|
return values.None, core.Errors(core.ErrInvalidType, ErrNotDynamic)
|
|
}
|
|
|
|
return values.None, doc.WaitForSelector(values.NewString(selector), timeout)
|
|
}
|