02-12-2013 01:45 PM
Hi Guys,
I need to clear some or all cookies from WebView before sending a request.
i used bellow code to do it:
m_webView->storage()->clearCookies();
But it is not clearing the cookies.
What is the API i can use to clear this cookies from WebView.
02-12-2013 04:22 PM
maybe m_webView->storage()->clear() helps?
02-13-2013 10:23 AM
Thanks JohnWS.
It is clearing cookies if i call "m_webView->storage()->clearCookies();" or "m_webView->storage()->clear()" method multiple times.
If i call only one time the above method is not clearing cookies.