MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / Execute

Method Execute

dotnet/src/webdriver/WebElement.cs:704–711  ·  view source on GitHub ↗

Executes a command on this element using the specified parameters. The to execute against this element. A containing names and values of the parameters for the command. The object containing the result of the command

(string commandToExecute, Dictionary<string,
#nullable disable
        object
#nullable enable
            >? parameters)

Source from the content-addressed store, hash-verified

702 /// <param name="parameters">A <see cref="Dictionary{K, V}"/> containing names and values of the parameters for the command.</param>
703 /// <returns>The <see cref="Response"/> object containing the result of the command execution.</returns>
704 protected virtual Response Execute(string commandToExecute, Dictionary<string,
705#nullable disable
706 object
707#nullable enable
708 >? parameters)
709 {
710 return this.driver.Execute(commandToExecute, parameters);
711 }
712
713 private static string GetWrappedAtom(string name, string content)
714 {

Callers 12

WebElementClass · 0.95
ClearMethod · 0.95
ClickMethod · 0.95
FindElementMethod · 0.95
FindElementsMethod · 0.95
GetDomAttributeMethod · 0.95
GetDomPropertyMethod · 0.95
GetShadowRootMethod · 0.95
GetCssValueMethod · 0.95
GetScreenshotMethod · 0.95
SendKeysMethod · 0.95
UploadFileMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected