Méthode | Description | |
---|---|---|
AddCookie ( string name, string value, string domain = null, string path = null, string expiry = null, bool secure = false, bool httpOnly = false ) : void |
Adds a cookie to the current page.
|
|
DeleteAllCookies ( ) : void |
Deletes all cookies from the page.
|
|
DeleteCookieByName ( string name ) : void |
Deletes the cookie with the specified name from the page.
|
|
FindCookieByName ( string namePattern ) : Selenium.Cookie |
Gets a cookie with the specified name.
|
|
Location ( ) : Dictionary |
Get the current geo location.
|
|
SetLocation ( double latitude, double longitude, double altitude ) : void |
Set the current geo location.
|
Méthode | Description | |
---|---|---|
Manage ( RemoteSession session ) : Selenium.Core |
public AddCookie ( string name, string value, string domain = null, string path = null, string expiry = null, bool secure = false, bool httpOnly = false ) : void | ||
name | string | |
value | string | |
domain | string | |
path | string | |
expiry | string | |
secure | bool | |
httpOnly | bool | |
Résultat | void |
public DeleteCookieByName ( string name ) : void | ||
name | string | The name of the cookie to be deleted. |
Résultat | void |
public FindCookieByName ( string namePattern ) : Selenium.Cookie | ||
namePattern | string | The name of the cookie to retrieve. |
Résultat | Selenium.Cookie |
public SetLocation ( double latitude, double longitude, double altitude ) : void | ||
latitude | double | |
longitude | double | |
altitude | double | |
Résultat | void |