Hi Nadege
This behavior is very strange.
-
As far as I know Genesys Cloud itself does not actively call " window.focus()" when interactions arrive, so if a tab is stealing focus it is typically triggered by a surrounding integration, browser extension, or custom event handler reacting to interaction notifications.
-
You may also want to check this using the browser Developer Tools.
Open the F12 Developer Console in the Genesys tab and monitor what happens when a new interaction arrives:
- In the Console tab, watch for any JavaScript messages or errors triggered at the moment the interaction appears.
- In the Sources → Event Listener Breakpoints section, you can enable breakpoints for Focus or Control → focus events to see if any script is calling a focus-related action.
- You could also monitor focus events in the browser DevTools.
Open the console in the Genesys tab and run:
window.addEventListener('focus', () => console.log('Genesys tab received focus', new Date()));
window.addEventListener('blur', () => console.log('Genesys tab lost focus', new Date()));
This can help confirm whether the tab is receiving focus exactly when the interaction arrives.
-
I hpe this help you
------------------------------
Kaio Oliveira
GCP - GCQM - GCS - GCA - GCD - GCO - GPE & GPR - GCWM
PS.: I apologize if there are any mistakes in my English; my primary language is Portuguese-Br.
------------------------------