Documentation ¶
Index ¶
- func Blur(id runtime.RemoteObjectID) *eval.Function
- func BlurBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function
- func CountBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function
- func DOMReady() *eval.Function
- func EscapeString(value string) string
- func ExistsBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function
- func GetAttribute(id runtime.RemoteObjectID, name values.String) *eval.Function
- func GetAttributes(id runtime.RemoteObjectID) *eval.Function
- func GetChildByIndex(id runtime.RemoteObjectID, index values.Int) *eval.Function
- func GetChildren(id runtime.RemoteObjectID) *eval.Function
- func GetChildrenCount(id runtime.RemoteObjectID) *eval.Function
- func GetDocument() *eval.Function
- func GetInnerHTML(id runtime.RemoteObjectID) *eval.Function
- func GetInnerHTMLBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function
- func GetInnerHTMLBySelectorAll(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function
- func GetInnerText(id runtime.RemoteObjectID) *eval.Function
- func GetInnerTextBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function
- func GetInnerTextBySelectorAll(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function
- func GetNextElementSibling(id runtime.RemoteObjectID) *eval.Function
- func GetNodeName(id runtime.RemoteObjectID) *eval.Function
- func GetNodeType(id runtime.RemoteObjectID) *eval.Function
- func GetParent(id runtime.RemoteObjectID) *eval.Function
- func GetPreviousElementSibling(id runtime.RemoteObjectID) *eval.Function
- func GetStyle(id runtime.RemoteObjectID, name values.String) *eval.Function
- func GetStyles(id runtime.RemoteObjectID) *eval.Function
- func GetTitle() *eval.Function
- func GetURL() *eval.Function
- func GetValue(id runtime.RemoteObjectID) *eval.Function
- func ParamErr(err error) string
- func QuerySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function
- func QuerySelectorAll(id runtime.RemoteObjectID, selector drivers.QuerySelector) *eval.Function
- func RemoveAttribute(id runtime.RemoteObjectID, name values.String) *eval.Function
- func RemoveAttributes(id runtime.RemoteObjectID, names []values.String) *eval.Function
- func RemoveStyles(id runtime.RemoteObjectID, names []values.String) *eval.Function
- func RemoveStylesAll(id runtime.RemoteObjectID) *eval.Function
- func Scroll(options drivers.ScrollOptions) *eval.Function
- func ScrollBottom(options drivers.ScrollOptions) *eval.Function
- func ScrollIntoView(id runtime.RemoteObjectID, options drivers.ScrollOptions) *eval.Function
- func ScrollIntoViewBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector, ...) *eval.Function
- func ScrollTop(options drivers.ScrollOptions) *eval.Function
- func Select(id runtime.RemoteObjectID, inputs *values.Array) *eval.Function
- func SelectBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector, ...) *eval.Function
- func SetAttribute(id runtime.RemoteObjectID, name, value values.String) *eval.Function
- func SetAttributes(id runtime.RemoteObjectID, values *values.Object) *eval.Function
- func SetInnerHTML(id runtime.RemoteObjectID, value values.String) *eval.Function
- func SetInnerHTMLBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector, value values.String) *eval.Function
- func SetInnerText(id runtime.RemoteObjectID, value values.String) *eval.Function
- func SetInnerTextBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector, value values.String) *eval.Function
- func SetStyle(id runtime.RemoteObjectID, name, value values.String) *eval.Function
- func SetStyles(id runtime.RemoteObjectID, values *values.Object) *eval.Function
- func SetValue(id runtime.RemoteObjectID, value core.Value) *eval.Function
- func WaitForAttribute(id runtime.RemoteObjectID, name values.String, expected core.Value, ...) *eval.Function
- func WaitForAttributeBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector, name core.Value, ...) *eval.Function
- func WaitForAttributeBySelectorAll(id runtime.RemoteObjectID, selector drivers.QuerySelector, name values.String, ...) *eval.Function
- func WaitForClass(id runtime.RemoteObjectID, class values.String, when drivers.WaitEvent) *eval.Function
- func WaitForClassBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector, class values.String, ...) *eval.Function
- func WaitForClassBySelectorAll(id runtime.RemoteObjectID, selector drivers.QuerySelector, class values.String, ...) *eval.Function
- func WaitForElement(id runtime.RemoteObjectID, selector drivers.QuerySelector, ...) *eval.Function
- func WaitForElementAll(id runtime.RemoteObjectID, selector drivers.QuerySelector, ...) *eval.Function
- func WaitForStyle(id runtime.RemoteObjectID, name values.String, expected core.Value, ...) *eval.Function
- func WaitForStyleBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector, name values.String, ...) *eval.Function
- func WaitForStyleBySelectorAll(id runtime.RemoteObjectID, selector drivers.QuerySelector, name values.String, ...) *eval.Function
- func XPath(id runtime.RemoteObjectID, expression values.String) *eval.Function
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
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 EscapeString ¶ added in v0.16.0
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 GetAttributes ¶ added in v0.16.0
func GetAttributes(id runtime.RemoteObjectID) *eval.Function
func GetChildByIndex ¶ added in v0.14.0
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 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 GetPreviousElementSibling ¶ added in v0.13.0
func GetPreviousElementSibling(id runtime.RemoteObjectID) *eval.Function
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 RemoveAttributes ¶ added in v0.16.0
func RemoveStyles ¶ added in v0.16.0
func RemoveStylesAll ¶ added in v0.16.0
func RemoveStylesAll(id runtime.RemoteObjectID) *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 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 SetAttributes ¶ added in v0.16.0
func SetInnerHTML ¶ added in v0.8.0
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 SetInnerTextBySelector ¶ added in v0.8.0
func SetInnerTextBySelector(id runtime.RemoteObjectID, selector drivers.QuerySelector, value values.String) *eval.Function
func WaitForAttribute ¶ added in v0.16.0
func WaitForAttributeBySelector ¶ added in v0.16.0
func WaitForAttributeBySelectorAll ¶ added in v0.16.0
func WaitForClass ¶ added in v0.16.0
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 WaitForStyleBySelector ¶ added in v0.16.0
func WaitForStyleBySelectorAll ¶ added in v0.16.0
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.