Property | Type | Description | |
---|---|---|---|
Capability | string |
Property | Type | Description | |
---|---|---|---|
ToCapabilities | ICapabilities |
Method | Description | |
---|---|---|
AddAdditionalCapability ( string capabilityName, object capabilityValue ) : void |
Provides a means to add additional capabilities not yet added as type safe options for the Chrome driver. Calling AddAdditionalCapability where capabilityName has already been added will overwrite the existing value with the new value in capabilityValue |
|
AddArgument ( string argument ) : void |
Adds a single argument to the list of arguments to be appended to the Chrome.exe command line.
|
|
AddArguments ( ) : void |
Adds arguments to be appended to the Chrome.exe command line.
|
|
AddArguments ( IEnumerable |
Adds arguments to be appended to the Chrome.exe command line.
|
|
AddExtension ( string pathToExtension ) : void |
Adds a path to a packed Chrome extension (.crx file) to the list of extensions to be installed in the instance of Chrome.
|
|
AddExtensions ( ) : void |
Adds a list of paths to packed Chrome extensions (.crx files) to be installed in the instance of Chrome.
|
|
AddExtensions ( IEnumerable |
Adds a list of paths to packed Chrome extensions (.crx files) to be installed in the instance of Chrome.
|
Method | Description | |
---|---|---|
ToCapabilities ( ) : ICapabilities |
Returns DesiredCapabilities for Chrome with these options included as capabilities. This does not copy the options. Further changes will be reflected in the returned capabilities.
|
public AddAdditionalCapability ( string capabilityName, object capabilityValue ) : void | ||
capabilityName | string | The name of the capability to add. |
capabilityValue | object | The value of the capability to add. |
return | void |
public AddArgument ( string argument ) : void | ||
argument | string | The argument to add. |
return | void |
public AddArguments ( IEnumerable |
||
arguments | IEnumerable |
An |
return | void |
public AddExtension ( string pathToExtension ) : void | ||
pathToExtension | string | The full path to the extension to add. |
return | void |
public AddExtensions ( IEnumerable |
||
extensions | IEnumerable |
An |
return | void |