templates

package
v0.17.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 7, 2023 License: Apache-2.0 Imports: 6 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Blur added in v0.9.0

func BlurBySelector added in v0.9.0

func BlurBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function

func CountBySelector added in v0.16.0

func CountBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function

func DOMReady added in v0.12.0

func DOMReady() *eval.Function

func EscapeString added in v0.16.0

func EscapeString(value string) string

func ExistsBySelector added in v0.16.0

func ExistsBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function

func GetAttribute added in v0.16.0

func GetAttribute(id runtime.RemoteObjectID, name values.String) *eval.Function

func GetAttributes added in v0.16.0

func GetAttributes(id runtime.RemoteObjectID) *eval.Function

func GetChildByIndex added in v0.14.0

func GetChildByIndex(id runtime.RemoteObjectID, index values.Int) *eval.Function

func GetChildren added in v0.14.0

func GetChildren(id runtime.RemoteObjectID) *eval.Function

func GetChildrenCount added in v0.14.0

func GetChildrenCount(id runtime.RemoteObjectID) *eval.Function

func GetDocument added in v0.16.0

func GetDocument() *eval.Function

func GetInnerHTML added in v0.16.0

func GetInnerHTML(id runtime.RemoteObjectID) *eval.Function

func GetInnerHTMLBySelector added in v0.8.0

func GetInnerHTMLBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function

func GetInnerHTMLBySelectorAll added in v0.8.0

func GetInnerHTMLBySelectorAll(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function

func GetInnerText added in v0.16.0

func GetInnerText(id runtime.RemoteObjectID) *eval.Function

func GetInnerTextBySelector added in v0.8.0

func GetInnerTextBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function

func GetInnerTextBySelectorAll added in v0.8.0

func GetInnerTextBySelectorAll(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function

func GetNextElementSibling added in v0.13.0

func GetNextElementSibling(id runtime.RemoteObjectID) *eval.Function

func GetNodeName added in v0.16.0

func GetNodeName(id runtime.RemoteObjectID) *eval.Function

func GetNodeType added in v0.16.0

func GetNodeType(id runtime.RemoteObjectID) *eval.Function

func GetParent added in v0.13.0

func GetParent(id runtime.RemoteObjectID) *eval.Function

func GetPreviousElementSibling added in v0.13.0

func GetPreviousElementSibling(id runtime.RemoteObjectID) *eval.Function

func GetStyle added in v0.16.0

func GetStyle(id runtime.RemoteObjectID, name values.String) *eval.Function

func GetStyles added in v0.13.0

func GetStyles(id runtime.RemoteObjectID) *eval.Function

func GetTitle added in v0.16.0

func GetTitle() *eval.Function

func GetURL added in v0.14.0

func GetURL() *eval.Function

func GetValue added in v0.16.0

func GetValue(id runtime.RemoteObjectID) *eval.Function

func ParamErr added in v0.16.0

func ParamErr(err error) string

func QuerySelector added in v0.16.0

func QuerySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function

func QuerySelectorAll added in v0.16.0

func QuerySelectorAll(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function

func RemoveAttribute added in v0.16.0

func RemoveAttribute(id runtime.RemoteObjectID, name values.String) *eval.Function

func RemoveAttributes added in v0.16.0

func RemoveAttributes(id runtime.RemoteObjectID, names []values.String) *eval.Function

func RemoveStyles added in v0.16.0

func RemoveStyles(id runtime.RemoteObjectID, names []values.String) *eval.Function

func RemoveStylesAll added in v0.16.0

func RemoveStylesAll(id runtime.RemoteObjectID) *eval.Function

func Scroll added in v0.8.0

func Scroll(options drivers.ScrollOptions) *eval.Function

func ScrollBottom added in v0.8.0

func ScrollBottom(options drivers.ScrollOptions) *eval.Function

func ScrollIntoView added in v0.8.0

func ScrollIntoView(id runtime.RemoteObjectID, options drivers.ScrollOptions) *eval.Function

func ScrollIntoViewBySelector added in v0.8.0

func ScrollIntoViewBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector, options drivers.ScrollOptions) *eval.Function

func ScrollTop added in v0.8.0

func ScrollTop(options drivers.ScrollOptions) *eval.Function

func Select added in v0.8.0

func Select(id runtime.RemoteObjectID, inputs *values.Array) *eval.Function

func SelectBySelector added in v0.8.0

func SelectBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector, inputs *values.Array) *eval.Function

func SetAttribute added in v0.16.0

func SetAttribute(id runtime.RemoteObjectID, name, value values.String) *eval.Function

func SetAttributes added in v0.16.0

func SetAttributes(id runtime.RemoteObjectID, values *values.Object) *eval.Function

func SetInnerHTML added in v0.8.0

func SetInnerHTML(id runtime.RemoteObjectID, value values.String) *eval.Function

func SetInnerHTMLBySelector added in v0.8.0

func SetInnerHTMLBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector, value values.String) *eval.Function

func SetInnerText added in v0.8.0

func SetInnerText(id runtime.RemoteObjectID, value values.String) *eval.Function

func SetInnerTextBySelector added in v0.8.0

func SetInnerTextBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector, value values.String) *eval.Function

func SetStyle added in v0.16.0

func SetStyle(id runtime.RemoteObjectID, name, value values.String) *eval.Function

func SetStyles added in v0.16.0

func SetStyles(id runtime.RemoteObjectID, values *values.Object) *eval.Function

func SetValue added in v0.16.0

func SetValue(id runtime.RemoteObjectID, value core.Value) *eval.Function

func WaitForAttribute added in v0.16.0

func WaitForAttribute(id runtime.RemoteObjectID, name values.String, expected core.Value, when drivers.WaitEvent) *eval.Function

func WaitForAttributeBySelector added in v0.16.0

func WaitForAttributeBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector, name core.Value, expected core.Value, when drivers.WaitEvent) *eval.Function

func WaitForAttributeBySelectorAll added in v0.16.0

func WaitForAttributeBySelectorAll(id runtime.RemoteObjectID, selector drivers.QuerySelector, name values.String, expected core.Value, when drivers.WaitEvent) *eval.Function

func WaitForClass added in v0.16.0

func WaitForClass(id runtime.RemoteObjectID, class values.String, when drivers.WaitEvent) *eval.Function

func WaitForClassBySelector added in v0.16.0

func WaitForClassBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector, class values.String, when drivers.WaitEvent) *eval.Function

func WaitForClassBySelectorAll added in v0.16.0

func WaitForClassBySelectorAll(id runtime.RemoteObjectID, selector drivers.QuerySelector, class values.String, when drivers.WaitEvent) *eval.Function

func WaitForElement added in v0.16.0

func WaitForElement(id runtime.RemoteObjectID, selector drivers.QuerySelector, when drivers.WaitEvent) *eval.Function

func WaitForElementAll added in v0.16.0

func WaitForElementAll(id runtime.RemoteObjectID, selector drivers.QuerySelector, when drivers.WaitEvent) *eval.Function

func WaitForStyle added in v0.16.0

func WaitForStyle(id runtime.RemoteObjectID, name values.String, expected core.Value, when drivers.WaitEvent) *eval.Function

func WaitForStyleBySelector added in v0.16.0

func WaitForStyleBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector, name values.String, expected core.Value, when drivers.WaitEvent) *eval.Function

func WaitForStyleBySelectorAll added in v0.16.0

func WaitForStyleBySelectorAll(id runtime.RemoteObjectID, selector drivers.QuerySelector, name values.String, expected core.Value, when drivers.WaitEvent) *eval.Function

func XPath added in v0.8.0

func XPath(id runtime.RemoteObjectID, expression values.String) *eval.Function

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL