When the user is programming a RPA process, the users select the windows from drop-down list, the control room complete crashed every time.
Microsoft Edge 124.0.2478.51
When the user is programming a RPA process, the users select the windows from drop-down list, the control room complete crashed every time.
Microsoft Edge 124.0.2478.51
Hello,
Â
3 Quick Fix we have right now.
Â
Â
Use Firefox browser.
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)
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Â
Â
Thanks for your answer, the problem is that the browser versions are controlled by the corporate and we can only use Edge
Hello,
Â
3 Quick Fix we have right now.
Â
Â
Use Firefox browser.
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)
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Â
Â
Thanks for your answer, the problem is that the browser versions are controlled by the corporate and we can only use Edge
Hi
Hi
You’ll find the details and the possible answers here.Â
Â
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.