I have encountered failures in my UiPath process in certain special cases

SyntaxEditor Code Snippet

<html app='chrome.exe' title='Yoptima Master_IN.xlsx' /> <webctrl id='WebApplicationFrame' tag='IFRAME' /> <webctrl parentid='FileSaveAsPage' tag='SPAN' /> <ctrl name='Save card' role='push button' />

this how I added but still error persists…
is it possible for you to connect i can share a gmail invite

when I reIndicate the save button
now the selector changed as

<webctrl id='WebApplicationFrame' tag='IFRAME' />
<webctrl id='id__212' tag='SPAN' />

the issue is with selector only, you should open the ui explorer and try to fine tune the selector.

@Sreeja_Chilumukuri

Did you happen to check the screenshot from the virtual machien when bot failed?

Is it on the right screen?

If yes then first open ui explorer and then indicate element …and use static values …that means it should not contain any numbers or so…and try selecting the elements from right top menu and the centre top menu which you feel are reliable and validate…once validated reload the page and then try validating again if validated.then mostly it is reliable

Cheers

Hi @Sreeja_Chilumukuri

Instead of relying on UI automation to click the save button, explore other options to download the file programmatically. For example, if the file can be downloaded via a web URL, you can use HTTP requests or activities like HTTP Request to download the file directly. If an API is available for downloading the file, you can leverage that as well.

Thanks!!!