Hi,
I feel the problem is related to the google chrome version.
Mar 18, 2021: The flags #same-site-by-default-cookies and #cookies-without-same-site-must-be-secure have been removed from chrome://flags as of Chrome 91, as the behavior is now enabled by default.
Reading other community articles (piunikaweb.com/.../), we can still disable these flags from the target path so in the browser exe path, we add the following:
--disable-features=SameSiteByDefaultCookies or --disable-features=CookieswithoutSameSitemustbesecure in the target field of Google Chrome or Microsoft Edge properties and restart the web browser.
Note: All the Chrome/Chromium instances must be closed before adding the tags mentioned above.
The tags must be added after the “C:\Program Files\Google\Chrome\Application\chrome.exe” or “C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe” (in case of Microsoft Edge) like this:
“C:\Program Files\Google\Chrome\Application\chrome.exe” --disable-features=CookiesWithoutSameSiteMustBeSecure
“C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe” --disable-features=CookiesWithoutSameSiteMustBeSecure