The Scenario :
I have already created Project and ready for production, but at the last moment my client said we must add site to this so that it could use internet explorer :
When i changed as my client said my automation is not working. What should i do now ? should i reindicate each activity again ? it is so tedious to do. Is there any other solution ?
In your selector you need to remove the app attribute ms edge. Because in edge ie mode selector will varies. If you want to know the difference you can indicate the selectors in ie mode in edge and normal edge mode which already you developed.
Most common change is app attributes in all of the selectors if you remove the app =msedge.exe it will work
This is from UI Explorer where you get it all as one selector. But when you’re doing it in an automation, they are split between the Use Application/Browser:
<html app='chrome.exe' title='Latest topics - UiPath Community Forum' />
…and the strict selector in the Click (or whatever) activity:
<webctrl id='site-logo' tag='IMG' />
For Edge the Use App selector is this:
<html app='msedge.exe' title='Latest topics - UiPath Community Forum' />
Now that I have read OP’s issue more than once, this reads more like it should be setup on each client’s machine rather than an automation problem. How can the robot know that, if they are being directed to a site, to use IE settings rather than Chrome/Edge/Browser X?
I would ask that each of your customers, or if the robot logs into a machine, check to see if that URL is set to IE mode just as you have it in your initial post via the screen capture. This reads like its a client issue and they need to check that.