06-05-19 05:23 PM
13-10-22 12:33 PM
Hi ,
I have put this " force-renderer-accessibility " in the end of my URL link but it doesn't open it .
13-10-22 12:44 PM
My best guess here is that this is happening since you are trying to automate the application as Browser Application instead of Windows Application at this step in your Application Wizard as shown below:
Steps To Enable AA Mode:
Step A) Instead of Browser Application, make the application as 'Windows Application' instead at this step. Since AA mode is not supported under Browser Application types:
Step B) Then you ensure that your application is launched from an executable file and provide the application file path of the browser which you wish to automate. In my case, I am using chrome:
Step C) Then you need to provide the URL followed by a flag, '--force-renderer-accessibility'. This flag is what will enable the active accessibility for me. Here, let say my Url is for Google home page:
Step D) You can just leave the other options as default in the subsequent steps. And now if you try to launch and identify any element, you should be able to see 'Win32', 'UIA', 'AA' and 'Region' mode:
13-10-22 01:13 PM
Hi @devneetmohanty07 and thanks for the reply.
I did it just like you said and also make the application as 'Windows Application' but this thing that I just did has deleted the spy of Browser Mode
Is there a way to get all the spy-ies together?
13-10-22 04:18 PM
13-10-22 04:43 PM
14-10-22 08:32 AM
Hi @devneetmohanty07, @Ami Barrett ,
Thank you both for your help!
10-02-23 04:37 AM
Hello @AmiBarrett
Recently we are facing issues with AA mode in Google chrome browser. The same code is working on some of the machines and won't work on some. We are using focus and global mouse click center to highlight and click for all the buttons and dropdown elements. Focus is clicking instead of highlighting the buttons and dropdown elements in some machines where as it working as expected in the other machines. It started to happen in my developer machine as well. This wasn't an issue when we were developing. We are running this code in 20 machines and the issue is happening in 6 of them.
Best,
Bhaskar
23-02-23 04:06 AM
Do you know if there's any sort of environmental difference between those machines? Something like a different version of Chrome, or different plugins installed?
09-10-23 03:45 PM
Hi Ami,
Facing same issue after the latest Chrome and Edge update (114.0.1823.37), Active Accessibility is no longer available even after we select Application type as windows or Internet explorer, we tried appending URL with the --force-renderer-accessibility.
upon checking we found that other RPA tools are also facing similar issue after this update.
09-10-23 09:06 PM
You'll need to change it to --force-renderer-accessibility=complete in order to replicate the functionality it had before they changed it in the browsers.