Solved

Control room problem

  • 23 April 2024
  • 5 replies
  • 206 views

Badge +2

I can’t edit navigator in Recorder. I got this error 

Code d'erreur : STATUS_STACK_OVERFLOW

 

icon

Best answer by Ganesh Bhat 23 April 2024, 18:39

View original

5 replies

Userlevel 4
Badge +12

Hello,

 

Please Go through this blog [CHECK THIS ] https://apeople.automationanywhere.com/s/article/A360-UI-getting-an-error-code-STATUS-STACK-OVERFLOW-when-clicking-the-drop-down-button-on-the-bot-edit-page

 

Solution is : You need to install the versions below to that version: of Google Chrome browser: 124.x (124.0.6367.60 or 124.0.6367.61) and Edge browser: 124.x (124.0.2478.51)

 

Thanks,

Ganesh Bhat 

Badge +2

I have the latest version of Google Chrome browser(124.0.6367.61) and Edge browser.

@Ganesh Bhat if you have another suggestion or idea about this please 

 

Badge

Hi Fatima,

 

When I downgrade the chrome version, the issue has been resolved .

 

 

 

Regards,  

Userlevel 4
Badge +12

3 Quick Fix we have right now.


 

 

  1. Use Firefox browser.

  2. [CHECK THIS ] https://apeople.automationanywhere.com/s/article/A360-UI-getting-an-error-code-STATUS-STACK-OVERFLOW-when-clicking-the-drop-down-button-on-the-bot-edit-page

    You need to install the versions below to that version: of Google Chrome browser: 124.x (124.0.6367.60 or 124.0.6367.61) and Edge browser: 124.x (124.0.2478.51)

  3. Run below script in your browser console after you login to your automation anywhere instance. This will remove error for this session  

    =================================================================

    function removeAriaOwnsAttribute(element) {if (element.hasAttribute('aria-owns')) {         element.removeAttribute('aria-owns');     } } function mutationCallback(mutationsList, observer) {    mutationsList.forEach(mutation => {             removeAriaOwnsAttribute(mutation.target);     }); } const observer = new MutationObserver(mutationCallback); observer.observe(document.documentElement, {     attributes: true,     childList: true,     subtree: true,     attributeFilter: ['aria-owns'] });             ================================================================

 

 

Thanks,

Ganesh 

Userlevel 3
Badge +7

Hi @FatimaEzzahra ,

You’ll find the details and the resolution here

https://community.automationanywhere.com/developers%2Dforum%2D36/control%2Droll%2Dcrashes%2Dwhenever%2Di%2Dclick%2Dany%2Ddropdown%2D88075?tid=88075

Reply