blob: a0d56b95f782a300d841e701f8adb6d20c1a7dbc [file] [log] [blame] [edit]
### YamlMime:ManagedReference
items:
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings
commentId: T:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings
id: RunScriptCommandSettings
parent: OpenQA.Selenium.DevTools.V133.Runtime
children:
- OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.AwaitPromise
- OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.CommandName
- OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ExecutionContextId
- OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.GeneratePreview
- OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.IncludeCommandLineAPI
- OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ObjectGroup
- OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ReturnByValue
- OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ScriptId
- OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.Silent
langs:
- csharp
- vb
name: RunScriptCommandSettings
nameWithType: RunScriptCommandSettings
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings
type: Class
source:
remote:
path: bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: RunScriptCommandSettings
path: ../../bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
startLine: 11
assemblies:
- WebDriver
namespace: OpenQA.Selenium.DevTools.V133.Runtime
summary: RunScript
example: []
syntax:
content: 'public sealed class RunScriptCommandSettings : ICommand'
content.vb: Public NotInheritable Class RunScriptCommandSettings Implements ICommand
inheritance:
- System.Object
implements:
- OpenQA.Selenium.DevTools.ICommand
inheritedMembers:
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.CommandName
commentId: P:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.CommandName
id: CommandName
parent: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings
langs:
- csharp
- vb
name: CommandName
nameWithType: RunScriptCommandSettings.CommandName
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.CommandName
type: Property
source:
remote:
path: bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: CommandName
path: ../../bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
startLine: 18
assemblies:
- WebDriver
namespace: OpenQA.Selenium.DevTools.V133.Runtime
summary: Gets the name of the command.
example: []
syntax:
content: >-
[JsonIgnore]
public string CommandName { get; }
parameters: []
return:
type: System.String
content.vb: >-
<JsonIgnore>
Public ReadOnly Property CommandName As String
overload: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.CommandName*
implements:
- OpenQA.Selenium.DevTools.ICommand.CommandName
attributes:
- type: System.Text.Json.Serialization.JsonIgnoreAttribute
ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor
arguments: []
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ScriptId
commentId: P:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ScriptId
id: ScriptId
parent: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings
langs:
- csharp
- vb
name: ScriptId
nameWithType: RunScriptCommandSettings.ScriptId
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ScriptId
type: Property
source:
remote:
path: bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: ScriptId
path: ../../bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
startLine: 24
assemblies:
- WebDriver
namespace: OpenQA.Selenium.DevTools.V133.Runtime
summary: Gets or sets the scriptId
example: []
syntax:
content: >-
[JsonPropertyName("scriptId")]
public string ScriptId { get; set; }
parameters: []
return:
type: System.String
content.vb: >-
<JsonPropertyName("scriptId")>
Public Property ScriptId As String
overload: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ScriptId*
attributes:
- type: System.Text.Json.Serialization.JsonPropertyNameAttribute
ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String)
arguments:
- type: System.String
value: scriptId
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ExecutionContextId
commentId: P:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ExecutionContextId
id: ExecutionContextId
parent: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings
langs:
- csharp
- vb
name: ExecutionContextId
nameWithType: RunScriptCommandSettings.ExecutionContextId
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ExecutionContextId
type: Property
source:
remote:
path: bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: ExecutionContextId
path: ../../bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
startLine: 31
assemblies:
- WebDriver
namespace: OpenQA.Selenium.DevTools.V133.Runtime
summary: Gets or sets the executionContextId
example: []
syntax:
content: >-
[JsonPropertyName("executionContextId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? ExecutionContextId { get; set; }
parameters: []
return:
type: System.Nullable{System.Int64}
content.vb: >-
<JsonPropertyName("executionContextId")>
<JsonIgnore(Condition:=JsonIgnoreCondition.WhenWritingDefault)>
Public Property ExecutionContextId As Long?
overload: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ExecutionContextId*
attributes:
- type: System.Text.Json.Serialization.JsonPropertyNameAttribute
ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String)
arguments:
- type: System.String
value: executionContextId
- type: System.Text.Json.Serialization.JsonIgnoreAttribute
ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor
arguments: []
namedArguments:
- name: Condition
type: System.Text.Json.Serialization.JsonIgnoreCondition
value: 2
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ObjectGroup
commentId: P:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ObjectGroup
id: ObjectGroup
parent: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings
langs:
- csharp
- vb
name: ObjectGroup
nameWithType: RunScriptCommandSettings.ObjectGroup
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ObjectGroup
type: Property
source:
remote:
path: bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: ObjectGroup
path: ../../bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
startLine: 38
assemblies:
- WebDriver
namespace: OpenQA.Selenium.DevTools.V133.Runtime
summary: Gets or sets the objectGroup
example: []
syntax:
content: >-
[JsonPropertyName("objectGroup")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? ObjectGroup { get; set; }
parameters: []
return:
type: System.String
content.vb: >-
<JsonPropertyName("objectGroup")>
<JsonIgnore(Condition:=JsonIgnoreCondition.WhenWritingDefault)>
Public Property ObjectGroup As String
overload: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ObjectGroup*
attributes:
- type: System.Text.Json.Serialization.JsonPropertyNameAttribute
ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String)
arguments:
- type: System.String
value: objectGroup
- type: System.Text.Json.Serialization.JsonIgnoreAttribute
ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor
arguments: []
namedArguments:
- name: Condition
type: System.Text.Json.Serialization.JsonIgnoreCondition
value: 2
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.Silent
commentId: P:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.Silent
id: Silent
parent: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings
langs:
- csharp
- vb
name: Silent
nameWithType: RunScriptCommandSettings.Silent
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.Silent
type: Property
source:
remote:
path: bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: Silent
path: ../../bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
startLine: 45
assemblies:
- WebDriver
namespace: OpenQA.Selenium.DevTools.V133.Runtime
summary: Gets or sets the silent
example: []
syntax:
content: >-
[JsonPropertyName("silent")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? Silent { get; set; }
parameters: []
return:
type: System.Nullable{System.Boolean}
content.vb: >-
<JsonPropertyName("silent")>
<JsonIgnore(Condition:=JsonIgnoreCondition.WhenWritingDefault)>
Public Property Silent As Boolean?
overload: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.Silent*
attributes:
- type: System.Text.Json.Serialization.JsonPropertyNameAttribute
ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String)
arguments:
- type: System.String
value: silent
- type: System.Text.Json.Serialization.JsonIgnoreAttribute
ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor
arguments: []
namedArguments:
- name: Condition
type: System.Text.Json.Serialization.JsonIgnoreCondition
value: 2
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.IncludeCommandLineAPI
commentId: P:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.IncludeCommandLineAPI
id: IncludeCommandLineAPI
parent: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings
langs:
- csharp
- vb
name: IncludeCommandLineAPI
nameWithType: RunScriptCommandSettings.IncludeCommandLineAPI
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.IncludeCommandLineAPI
type: Property
source:
remote:
path: bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: IncludeCommandLineAPI
path: ../../bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
startLine: 52
assemblies:
- WebDriver
namespace: OpenQA.Selenium.DevTools.V133.Runtime
summary: Gets or sets the includeCommandLineAPI
example: []
syntax:
content: >-
[JsonPropertyName("includeCommandLineAPI")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? IncludeCommandLineAPI { get; set; }
parameters: []
return:
type: System.Nullable{System.Boolean}
content.vb: >-
<JsonPropertyName("includeCommandLineAPI")>
<JsonIgnore(Condition:=JsonIgnoreCondition.WhenWritingDefault)>
Public Property IncludeCommandLineAPI As Boolean?
overload: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.IncludeCommandLineAPI*
attributes:
- type: System.Text.Json.Serialization.JsonPropertyNameAttribute
ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String)
arguments:
- type: System.String
value: includeCommandLineAPI
- type: System.Text.Json.Serialization.JsonIgnoreAttribute
ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor
arguments: []
namedArguments:
- name: Condition
type: System.Text.Json.Serialization.JsonIgnoreCondition
value: 2
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ReturnByValue
commentId: P:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ReturnByValue
id: ReturnByValue
parent: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings
langs:
- csharp
- vb
name: ReturnByValue
nameWithType: RunScriptCommandSettings.ReturnByValue
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ReturnByValue
type: Property
source:
remote:
path: bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: ReturnByValue
path: ../../bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
startLine: 59
assemblies:
- WebDriver
namespace: OpenQA.Selenium.DevTools.V133.Runtime
summary: Gets or sets the returnByValue
example: []
syntax:
content: >-
[JsonPropertyName("returnByValue")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? ReturnByValue { get; set; }
parameters: []
return:
type: System.Nullable{System.Boolean}
content.vb: >-
<JsonPropertyName("returnByValue")>
<JsonIgnore(Condition:=JsonIgnoreCondition.WhenWritingDefault)>
Public Property ReturnByValue As Boolean?
overload: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ReturnByValue*
attributes:
- type: System.Text.Json.Serialization.JsonPropertyNameAttribute
ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String)
arguments:
- type: System.String
value: returnByValue
- type: System.Text.Json.Serialization.JsonIgnoreAttribute
ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor
arguments: []
namedArguments:
- name: Condition
type: System.Text.Json.Serialization.JsonIgnoreCondition
value: 2
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.GeneratePreview
commentId: P:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.GeneratePreview
id: GeneratePreview
parent: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings
langs:
- csharp
- vb
name: GeneratePreview
nameWithType: RunScriptCommandSettings.GeneratePreview
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.GeneratePreview
type: Property
source:
remote:
path: bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: GeneratePreview
path: ../../bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
startLine: 66
assemblies:
- WebDriver
namespace: OpenQA.Selenium.DevTools.V133.Runtime
summary: Gets or sets the generatePreview
example: []
syntax:
content: >-
[JsonPropertyName("generatePreview")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? GeneratePreview { get; set; }
parameters: []
return:
type: System.Nullable{System.Boolean}
content.vb: >-
<JsonPropertyName("generatePreview")>
<JsonIgnore(Condition:=JsonIgnoreCondition.WhenWritingDefault)>
Public Property GeneratePreview As Boolean?
overload: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.GeneratePreview*
attributes:
- type: System.Text.Json.Serialization.JsonPropertyNameAttribute
ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String)
arguments:
- type: System.String
value: generatePreview
- type: System.Text.Json.Serialization.JsonIgnoreAttribute
ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor
arguments: []
namedArguments:
- name: Condition
type: System.Text.Json.Serialization.JsonIgnoreCondition
value: 2
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.AwaitPromise
commentId: P:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.AwaitPromise
id: AwaitPromise
parent: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings
langs:
- csharp
- vb
name: AwaitPromise
nameWithType: RunScriptCommandSettings.AwaitPromise
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.AwaitPromise
type: Property
source:
remote:
path: bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: AwaitPromise
path: ../../bazel-bin/dotnet/src/webdriver/cdp/v133/Runtime/RunScriptCommand.cs
startLine: 73
assemblies:
- WebDriver
namespace: OpenQA.Selenium.DevTools.V133.Runtime
summary: Gets or sets the awaitPromise
example: []
syntax:
content: >-
[JsonPropertyName("awaitPromise")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? AwaitPromise { get; set; }
parameters: []
return:
type: System.Nullable{System.Boolean}
content.vb: >-
<JsonPropertyName("awaitPromise")>
<JsonIgnore(Condition:=JsonIgnoreCondition.WhenWritingDefault)>
Public Property AwaitPromise As Boolean?
overload: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.AwaitPromise*
attributes:
- type: System.Text.Json.Serialization.JsonPropertyNameAttribute
ctor: System.Text.Json.Serialization.JsonPropertyNameAttribute.#ctor(System.String)
arguments:
- type: System.String
value: awaitPromise
- type: System.Text.Json.Serialization.JsonIgnoreAttribute
ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor
arguments: []
namedArguments:
- name: Condition
type: System.Text.Json.Serialization.JsonIgnoreCondition
value: 2
references:
- uid: OpenQA.Selenium.DevTools.V133.Runtime
commentId: N:OpenQA.Selenium.DevTools.V133.Runtime
href: OpenQA.html
name: OpenQA.Selenium.DevTools.V133.Runtime
nameWithType: OpenQA.Selenium.DevTools.V133.Runtime
fullName: OpenQA.Selenium.DevTools.V133.Runtime
spec.csharp:
- uid: OpenQA
name: OpenQA
href: OpenQA.html
- name: .
- uid: OpenQA.Selenium
name: Selenium
href: OpenQA.Selenium.html
- name: .
- uid: OpenQA.Selenium.DevTools
name: DevTools
href: OpenQA.Selenium.DevTools.html
- name: .
- uid: OpenQA.Selenium.DevTools.V133
name: V133
href: OpenQA.Selenium.DevTools.V133.html
- name: .
- uid: OpenQA.Selenium.DevTools.V133.Runtime
name: Runtime
href: OpenQA.Selenium.DevTools.V133.Runtime.html
spec.vb:
- uid: OpenQA
name: OpenQA
href: OpenQA.html
- name: .
- uid: OpenQA.Selenium
name: Selenium
href: OpenQA.Selenium.html
- name: .
- uid: OpenQA.Selenium.DevTools
name: DevTools
href: OpenQA.Selenium.DevTools.html
- name: .
- uid: OpenQA.Selenium.DevTools.V133
name: V133
href: OpenQA.Selenium.DevTools.V133.html
- name: .
- uid: OpenQA.Selenium.DevTools.V133.Runtime
name: Runtime
href: OpenQA.Selenium.DevTools.V133.Runtime.html
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: OpenQA.Selenium.DevTools.ICommand
commentId: T:OpenQA.Selenium.DevTools.ICommand
parent: OpenQA.Selenium.DevTools
href: OpenQA.Selenium.DevTools.ICommand.html
name: ICommand
nameWithType: ICommand
fullName: OpenQA.Selenium.DevTools.ICommand
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: OpenQA.Selenium.DevTools
commentId: N:OpenQA.Selenium.DevTools
href: OpenQA.html
name: OpenQA.Selenium.DevTools
nameWithType: OpenQA.Selenium.DevTools
fullName: OpenQA.Selenium.DevTools
spec.csharp:
- uid: OpenQA
name: OpenQA
href: OpenQA.html
- name: .
- uid: OpenQA.Selenium
name: Selenium
href: OpenQA.Selenium.html
- name: .
- uid: OpenQA.Selenium.DevTools
name: DevTools
href: OpenQA.Selenium.DevTools.html
spec.vb:
- uid: OpenQA
name: OpenQA
href: OpenQA.html
- name: .
- uid: OpenQA.Selenium
name: Selenium
href: OpenQA.Selenium.html
- name: .
- uid: OpenQA.Selenium.DevTools
name: DevTools
href: OpenQA.Selenium.DevTools.html
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.CommandName*
commentId: Overload:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.CommandName
href: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.html#OpenQA_Selenium_DevTools_V133_Runtime_RunScriptCommandSettings_CommandName
name: CommandName
nameWithType: RunScriptCommandSettings.CommandName
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.CommandName
- uid: OpenQA.Selenium.DevTools.ICommand.CommandName
commentId: P:OpenQA.Selenium.DevTools.ICommand.CommandName
parent: OpenQA.Selenium.DevTools.ICommand
href: OpenQA.Selenium.DevTools.ICommand.html#OpenQA_Selenium_DevTools_ICommand_CommandName
name: CommandName
nameWithType: ICommand.CommandName
fullName: OpenQA.Selenium.DevTools.ICommand.CommandName
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: string
nameWithType: string
fullName: string
nameWithType.vb: String
fullName.vb: String
name.vb: String
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ScriptId*
commentId: Overload:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ScriptId
href: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.html#OpenQA_Selenium_DevTools_V133_Runtime_RunScriptCommandSettings_ScriptId
name: ScriptId
nameWithType: RunScriptCommandSettings.ScriptId
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ScriptId
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ExecutionContextId*
commentId: Overload:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ExecutionContextId
href: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.html#OpenQA_Selenium_DevTools_V133_Runtime_RunScriptCommandSettings_ExecutionContextId
name: ExecutionContextId
nameWithType: RunScriptCommandSettings.ExecutionContextId
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ExecutionContextId
- uid: System.Nullable{System.Int64}
commentId: T:System.Nullable{System.Int64}
parent: System
definition: System.Nullable`1
href: https://learn.microsoft.com/dotnet/api/system.int64
name: long?
nameWithType: long?
fullName: long?
nameWithType.vb: Long?
fullName.vb: Long?
name.vb: Long?
spec.csharp:
- uid: System.Int64
name: long
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int64
- name: '?'
spec.vb:
- uid: System.Int64
name: Long
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int64
- name: '?'
- uid: System.Nullable`1
commentId: T:System.Nullable`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
name: Nullable<T>
nameWithType: Nullable<T>
fullName: System.Nullable<T>
nameWithType.vb: Nullable(Of T)
fullName.vb: System.Nullable(Of T)
name.vb: Nullable(Of T)
spec.csharp:
- uid: System.Nullable`1
name: Nullable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Nullable`1
name: Nullable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.nullable-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ObjectGroup*
commentId: Overload:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ObjectGroup
href: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.html#OpenQA_Selenium_DevTools_V133_Runtime_RunScriptCommandSettings_ObjectGroup
name: ObjectGroup
nameWithType: RunScriptCommandSettings.ObjectGroup
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ObjectGroup
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.Silent*
commentId: Overload:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.Silent
href: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.html#OpenQA_Selenium_DevTools_V133_Runtime_RunScriptCommandSettings_Silent
name: Silent
nameWithType: RunScriptCommandSettings.Silent
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.Silent
- uid: System.Nullable{System.Boolean}
commentId: T:System.Nullable{System.Boolean}
parent: System
definition: System.Nullable`1
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: bool?
nameWithType: bool?
fullName: bool?
nameWithType.vb: Boolean?
fullName.vb: Boolean?
name.vb: Boolean?
spec.csharp:
- uid: System.Boolean
name: bool
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: '?'
spec.vb:
- uid: System.Boolean
name: Boolean
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
- name: '?'
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.IncludeCommandLineAPI*
commentId: Overload:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.IncludeCommandLineAPI
href: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.html#OpenQA_Selenium_DevTools_V133_Runtime_RunScriptCommandSettings_IncludeCommandLineAPI
name: IncludeCommandLineAPI
nameWithType: RunScriptCommandSettings.IncludeCommandLineAPI
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.IncludeCommandLineAPI
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ReturnByValue*
commentId: Overload:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ReturnByValue
href: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.html#OpenQA_Selenium_DevTools_V133_Runtime_RunScriptCommandSettings_ReturnByValue
name: ReturnByValue
nameWithType: RunScriptCommandSettings.ReturnByValue
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.ReturnByValue
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.GeneratePreview*
commentId: Overload:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.GeneratePreview
href: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.html#OpenQA_Selenium_DevTools_V133_Runtime_RunScriptCommandSettings_GeneratePreview
name: GeneratePreview
nameWithType: RunScriptCommandSettings.GeneratePreview
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.GeneratePreview
- uid: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.AwaitPromise*
commentId: Overload:OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.AwaitPromise
href: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.html#OpenQA_Selenium_DevTools_V133_Runtime_RunScriptCommandSettings_AwaitPromise
name: AwaitPromise
nameWithType: RunScriptCommandSettings.AwaitPromise
fullName: OpenQA.Selenium.DevTools.V133.Runtime.RunScriptCommandSettings.AwaitPromise