Question

Community Edition Issues

  • 26 April 2024
  • 3 replies
  • 44 views

Badge +5

Hi,

I am facing an issue like while trying to browse the url in activate window action suddenly it navigate to reload page. Also facing same issue with action like adding variables in message box from drop down list. Please find the screenshot attached..

Please help me to resolve this issue.

 

 

 

 

Thanks,

Ardra


3 replies

Userlevel 3
Badge +6

Please review the following updates from AA. Downgrade your Chrome version to an older one, specifically version 123.x this should resolve the issue. Also, keep an eye on the following KB for the latest updates

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

Following the release of the new Google Chrome Browser version v124.x (124.0.6367.60 or 124.0.6367.61) and Edge browser version v124.x (124.0.2478.51), intermittent problems have been observed when clicking the dropdown button ▼ in the Automation 360 bot editor window on A360.x Control Room versions. Below error pops up "Aw Snap! something went wrong while displaying the website":

Note: The problem may manifest in any Bot Editor window of A360 Control Room when a drop-down is selected.

If you encounter this intermittent error, we recommend you to

Clear the browser cache

Restart the browser and retry the UI action.

Until the definitive solution is provided, we advise postponing the upgrade of Google Chrome browser to version 124.x (124.0.6367.60 or 124.0.6367.61) and Edge browser to 124.x (124.0.2478.51).

Additional Information

As Google Chrome version v124.x and Edge version v124.x is introduced this week, we've noticed instances where interactions with UI dropdowns in the Automation 360 bot editor window can trigger the appearance of the Chrome "Aw, Snap!" page, as shown in the attached screenshot. This occurrence obstructs users from completing their intended UI actions, accompanied by the "STATUS_STACK_OVERFLOW" error code.

Userlevel 3
Badge +5

Hi @ardra , 

This issue is now resolved. If the Chrome or Edge browser isn’t updated automatically, please upgrade your browser to the latest version.

Thanks

Rima Sengupta

Pathfinder Community Team 

Userlevel 4
Badge +12

@ardra 

This is not an Automation Anywhere error. This error is occurring due to the new version 24.x (124.0.6367.60 or 124.0.6367.61) and Edge browser: 124.x (124.0.2478.51).

We currently have three quick fixes available:

 

[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

 

1. Use the Firefox browser.

 

2. You need to install the below to following versions of the 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 the script below in your browser console after logging in to your Automation Anywhere instance. This will remove the 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']
}); 
================================================================
 

Reply