i have trying to fetch email server credential from credential locker,
As the page went as error while selecting credentials ,
please find the attached screenshot,
This is the known issue in Automation Anywhere currently
Solution : 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)
Thank you
Hi
Please find the above solution from
Use Firefox
or
Run this in your browser console after you login to your automation anywhere instance. This will remove this error for this session/ use any user script extension to automatically do it.
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']
});
Hi
Check if your chrome got updated back to latest version, if not try accessing CR in Firefox
We are receiving the same issue with 123.x
Hi
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.