UtilSeleniumDeserializeCookies Method
Namespace: DevCase.ThirdParty.SeleniumAssembly: DevCase.net48.ThirdParty.Selenium (in DevCase.net48.ThirdParty.Selenium.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static ReadOnlyCollection<Cookie> DeserializeCookies(
string cookiesPath
)
Public Shared Function DeserializeCookies (
cookiesPath As String
) As ReadOnlyCollection(Of Cookie)
Dim cookiesPath As String
Dim returnValue As ReadOnlyCollection(Of Cookie)
returnValue = UtilSelenium.DeserializeCookies(cookiesPath)
public:
static ReadOnlyCollection<Cookie^>^ DeserializeCookies(
String^ cookiesPath
)
static member DeserializeCookies :
cookiesPath : string -> ReadOnlyCollection<Cookie>
No code example is currently available or this language may not be supported.
- cookiesPath String
-
The file path of the cookies container.
ReadOnlyCollectionCookie
A
ReadOnlyCollectionT object with the cookies.
This is a code example.
No code example is currently available or this language may not be supported.
Dim cookies As ReadOnlyCollection(Of OpenQA.Selenium.Cookie) = SeleniumUtil.DeserializeCookies("C:\cookies.bin")
For Each cookie As OpenQA.Selenium.Cookie In cookies
Console.WriteLine(cookie.ToString())
Next cookie
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.