Hello. After automation anywhere bot agent version 22.40 I am facing this problem on the website. I updated, deleted, downloaded, etc. it didn't work. None of them work. Even redownloading version 21 and running it has the same problem. Thank you in advance.
@gudrat
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:
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: r'aria-owns']
});
================================================================
Hello
This issue is now resolved. If the Chrome or Edge browser isn’t updated automatically, please upgrade your browser to the latest version
Rima Sengupta
Pathfinder Community Team
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.