mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
3829dffb91
* adds function to type input * changes per feedback * more PR feedback changes * add context.Background()
94 lines
1.9 KiB
Go
94 lines
1.9 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"
|
|
)
|
|
|
|
/*
|
|
* Types a value to an underlying input element.
|
|
* @param source (Document | Element) - Event target.
|
|
* @param valueOrSelector (String) - Selector or a value.
|
|
* @param value (String) - Target value.
|
|
* @param delay (Int, optional) - Waits delay milliseconds between keystrokes
|
|
* @returns (Boolean) - Returns true if an element was found.
|
|
*/
|
|
func Input(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
err := core.ValidateArgs(args, 2, 4)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
arg1 := args[0]
|
|
err = core.ValidateType(arg1, core.HTMLDocumentType, core.HTMLElementType)
|
|
|
|
if err != nil {
|
|
return values.False, err
|
|
}
|
|
|
|
switch args[0].(type) {
|
|
case *dynamic.HTMLDocument:
|
|
|
|
doc, ok := arg1.(*dynamic.HTMLDocument)
|
|
|
|
if !ok {
|
|
return values.False, core.Errors(core.ErrInvalidType, ErrNotDynamic)
|
|
}
|
|
|
|
// selector
|
|
arg2 := args[1]
|
|
err = core.ValidateType(arg2, core.StringType)
|
|
|
|
if err != nil {
|
|
return values.False, err
|
|
}
|
|
|
|
delay := values.Int(0)
|
|
if len(args) == 4 {
|
|
arg4 := args[3]
|
|
|
|
err = core.ValidateType(arg4, core.IntType)
|
|
if err != nil {
|
|
return values.False, err
|
|
}
|
|
|
|
delay = arg4.(values.Int)
|
|
}
|
|
|
|
return doc.InputBySelector(arg2.(values.String), args[2], delay)
|
|
|
|
case *dynamic.HTMLElement:
|
|
el, ok := arg1.(*dynamic.HTMLElement)
|
|
|
|
if !ok {
|
|
return values.False, core.Errors(core.ErrInvalidType, ErrNotDynamic)
|
|
}
|
|
|
|
delay := values.Int(0)
|
|
if len(args) == 3 {
|
|
arg3 := args[2]
|
|
|
|
err = core.ValidateType(arg3, core.IntType)
|
|
if err != nil {
|
|
return values.False, err
|
|
}
|
|
|
|
delay = arg3.(values.Int)
|
|
}
|
|
|
|
err = el.Input(args[1], delay)
|
|
|
|
if err != nil {
|
|
return values.False, err
|
|
}
|
|
|
|
return values.True, nil
|
|
default:
|
|
return values.False, core.Errors(core.ErrInvalidArgument)
|
|
}
|
|
}
|