How to handle Internet Explorer mode pages in Edge?

Hello Experts !

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 ?

Thanks in advance.

Browser to Browser some miner selector are changing you need to validate what common changes required in new browser

I am using modern design. I have also checked the selectors but the selectors are same.

Hello is there any experts available here ? who can help me .

@mukeshkala @RAKESH_KUMAR_BEHERA @Anil_G @loginerror @prabin_chand1 @Konstantin_Pochinkov @Yoichi @Veronica_D_Onofrio @postwick

Hi @RobotUi

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

I have checked the selectors. But there is no Difference.

For testing purpose, I have first developed process without IE mode using this site Rpa Challenge.

And again another same process created with IE mode but there is no any difference.

What is your customers reason for not wanting the webpage in question to use Edge? We need to know why before any of us can give an answer.

They are using website that only support on IE mode. so they said to open it on IE mode so that some Menu will only work on IE mode.

The difference is at the Use Application/Browser selector.

Chrome:

<html app='chrome.exe' title='Latest topics - UiPath Community Forum' /> <webctrl id='site-logo' tag='IMG' />

Edge:

<html app='msedge.exe' title='Latest topics - UiPath Community Forum' /> <webctrl id='site-logo' tag='IMG' />

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' />

But the selector in the Click is the same.

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?

By Default it is redirect because of policy.

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.