Question

Community edition not working

  • 26 April 2024
  • 3 replies
  • 13 views

Badge

Hi Team,

 

I am able to open community edition however I am unable to capture the elements and its not working. Please find error screenshot attached for your reference.


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

Summary

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.

Cause

Resolution/Workaround

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

Hello @Sandy 8634 , 

his issue is resolved. Both the new versions of Chrome and Edge have the fix for this issue. If the browser isn't updated automatically, request customers/users to initiative an upgrade of their browser to get the latest version and the problem should be fixed.

Rima Sengupta

Pathfinder Community Team 

Userlevel 4
Badge +12

@Sandy 8634 

 

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