Method | Description | |
---|---|---|
AddCookie ( Cookie cookie ) : void |
Adds a cookie to the browser
|
|
ChromeOptions ( |
Initializes a new instance of the ChromeOptions class
|
|
DeleteAllCookies ( ) : void |
Delete all the Cookies
|
|
DeleteCookie ( Cookie cookie ) : void |
Delete a cookie by passing in a cookie object
|
|
DeleteCookieNamed ( string name ) : void |
Delete a cookie by passing in the name
|
|
Execute ( |
Execute commands on the browser
|
|
GetCookieNamed ( string name ) : Cookie |
Get a cookie by name
|
|
GetCookies ( ) : ReadOnlyCollection |
Gets all the cookies available
|
public AddCookie ( Cookie cookie ) : void | ||
cookie | Cookie | Instance of the cookie you wish to add |
return | void |
public ChromeOptions ( |
||
instance | Driver currently in use | |
return | System |
public DeleteCookie ( Cookie cookie ) : void | ||
cookie | Cookie | The cookie to be deleted |
return | void |
public DeleteCookieNamed ( string name ) : void | ||
name | string | Name of the cookie to be deleted |
return | void |
public Execute ( |
||
command | Command to be executed | |
return |
public GetCookieNamed ( string name ) : Cookie | ||
name | string | Name of the cookie |
return | Cookie |