1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-06-23 00:28:10 +02:00

Feature/#236 cookies (#242)

* Added KeepCookies option to CDP driver

* Added LoadDocumentParams

* Added COOKIE_GET and COOKIE_SET methods
This commit is contained in:
Tim Voronov
2019-03-15 19:59:05 -04:00
committed by GitHub
parent 803ae0ea24
commit 71c246dd17
33 changed files with 1305 additions and 89 deletions

View File

@ -17,6 +17,9 @@ func NewLib() map[string]core.Function {
"ATTR_GET": AttributeGet,
"ATTR_REMOVE": AttributeRemove,
"ATTR_SET": AttributeSet,
"COOKIE_DEL": CookieDel,
"COOKIE_GET": CookieGet,
"COOKIE_SET": CookieSet,
"CLICK": Click,
"CLICK_ALL": ClickAll,
"DOCUMENT": Document,