When a web-page sets cookies, the cookies are reflected in the next request from the WKWebView. This works fine. However, if we try to access the cookies from WKWebView via the WKHttpCookieStore or from NSHTTPCookieStorage or from WKWebsiteDataStore. fetchDataRecordsOfTypes:completionHandler The cookies are NOT there. However, if we set the `WKProcessPool` to a new process pool, and then attempt to access the cookies, they are immediately flushed to disk and can be accessed.
<rdar://problem/59350764>
(In reply to Brandon from comment #0) > When a web-page sets cookies, the cookies are reflected in the next request > from the WKWebView. This works fine. However, if we try to access the > cookies from WKWebView via the WKHttpCookieStore or from NSHTTPCookieStorage > or from WKWebsiteDataStore. fetchDataRecordsOfTypes:completionHandler > > The cookies are NOT there. However, if we set the `WKProcessPool` to a new > process pool, and then attempt to access the cookies, they are immediately > flushed to disk and can be accessed. Can you attach a test app for us to look into?