@Managed(uniqueSession = true, clearCookies = Never)
I have a serenity app that has a Oauth login mechanism using the Microsoft login. I am using the above code to make browser retain browser's memory. What I want to happened is I have a test to Login using the Microsoft Oauth. Then Have another test that will open the dashboard. Since the previous test already log in. I am hoping that Opening the dashboard of the app should be pass. Unfortunately when I access the dashboard. The test will ask for login again. Meaning that the previous login was deleted from the browser's memory.
How to properly retain the browser's memory in Serenity BDD screenplay test using only Google Chrome browser?