메소드 | 설명 | |
---|---|---|
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 |
리턴 | void |
public ChromeOptions ( |
||
instance | Driver currently in use | |
리턴 | System |
public DeleteCookie ( Cookie cookie ) : void | ||
cookie | Cookie | The cookie to be deleted |
리턴 | void |
public DeleteCookieNamed ( string name ) : void | ||
name | string | Name of the cookie to be deleted |
리턴 | void |
public Execute ( |
||
command | Command to be executed | |
리턴 |
public GetCookieNamed ( string name ) : Cookie | ||
name | string | Name of the cookie |
리턴 | Cookie |