I tried to create a automated login for a page. I wanted to login with InternetExplorer and give the session to a WinHTTP-Request to work with it. To do that I need all the cookies but I only get a few. Here is an example:
The cookies chrome shows me. The cookies my script shows me. And this is the function I use to get the cookies:
Func _IEGetCookies(ByRef $oIE)
Return $oIE.document.cookie
EndFunc ;==>_IEGetCookies
I think the problem is that the function only get local cookies and the others are like in the chrome screenshot "HTTP" but I don't know what HTTP-Cookies are and how to get them with AutoIt.