The cookiestore object retrieves a list of cookies from the containing browser (which implies that this class is only available for code running inside a browser instance, not from roNodeJs).
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
interface Cookie { attribute String domain; attribute String path; attribute String name; attribute String value; }; interface cookiestore { Array<Cookie> getCookies(); }; |
Object Creation
Cookie
To get cookies from the containing browser:
Code Block | ||
---|---|---|
| ||
Array<Cookie> getCookies() |
[string] domain:
[string] path:
[string] name:
[string] value: