Hi Everyone,
I have developed an automation where I need to change browser from edge to Chrome
Do I need to rework by changing selectors and properties
Hi Everyone,
I have developed an automation where I need to change browser from edge to Chrome
Do I need to rework by changing selectors and properties
hi @udith22
we do have migration tool
https://docs.uipath.com/activities/other/latest/ui-automation/browser-migration-tool
Also please be aware of wnd attribute
Hi @udith22
Yes you have to change the selectors from edge to chrome.
Take a variable and store the chrome.exe value. Assign → webapp = “chrome.exe”
Open the every Ui activity and open the selectors of it and pass the webapp variable to the app attribute.
Before :
<html **app='edge.exe'** title='Recently Viewed | Opportunities | Salesforce' />
After :
<html app='webapp' title='Recently Viewed | Opportunities | Salesforce' />
after update the app attribute validate the selectors.
Hope it helps!!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.