Question

Error en Google Chrome

  • 24 April 2024
  • 2 replies
  • 169 views

Badge +2

Amigos, estoy intentando realizar algunos cambios a un BOT y cuando voy a guardar aparece este error.

¿Alguien podría ayudarme a si le ha pasado esto?

Quedo atento y muchas gracias.

 

 


2 replies

Userlevel 4
Badge +12

3 Quick Fix we have currently .


 

 

  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 @User16037342849712120906 .

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