DXA Test Sessions banner not appearing | Experience Community
Skip to main content

DXA Test Sessions banner not appearing

  • June 15, 2026
  • 1 reply
  • 12 views

Forum|alt.badge.img+5

Hi all,
I’m unable to see the Test Sessions banner of Digital Experience Analytics, even though I think I set everything up correctly: third-party cookies are enabled, the test session is enabled, and the testing cookie is set correctly on the site domain. No vanity URL.

I also have a working feedback button, so I think that the issue can't be related to the Qualtrics snippet implementation.

The testing session banner never appears.


Are there any additional requirements or debugging steps to determine why the test session banner is not being triggered?

 

Thanks

 

 

 

 

 

1 reply

Lpena
Qualtrics Employee
Forum|alt.badge.img+4
  • Qualtrics Employee
  • July 9, 2026

If your deployment code is otherwise working (like showing feedback buttons), this usually points to a few hidden blockers with initialization, network rules, or custom domains.

A big one to check right away is whether your organization uses a vanity URL (a custom Qualtrics domain). If your project runs on a custom domain, standard test-session cookies fail to write properly to *.qualtrics.com due to strict browser cross-domain restrictions. If that's the case, you actually have to use a specific javascript bookmarklet workaround to manually force-inject the test-session cookie into your browser before loading your site.If you aren't using a vanity domain, your best next step is to open your browser’s DevTools and look into the Network and Application tabs. Under cookies, verify if

QSI_ReplaySession_Info_<ZoneId> is present—this is the cookie that tells DXA to initialize and record. While you're in DevTools, refresh the page and filter the Network tab for sessions/create, sessions/validate, and sessions/record-playback. If the create or record-playback calls are missing or throwing errors, data isn't transmitting correctly. This is frequently caused by a strict Content Security Policy (CSP) blocking Qualtrics resources, so you may need your web engineering team to allowlist connect-src https://*.qualtrics.com along with the related script/frame directives.It is also worth noting that if you are using an event listener like qsi_js_loaded to kick off a custom consent flow, running it before the Website Feedback API fully initializes can cause the recording session to drop entirely before the banner ever gets a chance to render.