Replies: 3 comments 2 replies
-
Did you check the log file? See #3111 (comment) |
Beta Was this translation helpful? Give feedback.
0 replies
-
I read the link you cited, and by doing some testing I realized my Cookies file is not updating. It gets created the first time, and then stays the same. |
Beta Was this translation helpful? Give feedback.
2 replies
-
I fixed it, my bad. I was initializing the browser before the Cef settings. Thank you for your help @amaitland |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What version of the product are you using?
What architecture x86 or x64?
What version of .Net?
.Net 4.6
On what operating system?
Win7
Are you using
WinForms
,WPF
orOffScreen
?WinForms
What steps will reproduce the problem?
I am trying to isolate each browser based on the current user, to have more sessions on the same website. This is my code:
browser = new ChromiumWebBrowser("http://www.whatarecookies.com/cookietest.asp") { RequestContext = new RequestContext(new RequestContextSettings { CachePath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\FaceNet\user", PersistSessionCookies = true }) };
What is the expected output? What do you see instead?
I was expecting to find the old session loaded back, but instead it starts as a completely new browser.
Please provide any additional information below.
The sessions are being saved in the folder I specified, they just don't get loaded back.
Thank you in advance.
Beta Was this translation helpful? Give feedback.
All reactions