Hi - I have a web application that we use internally to capture loan details. there are several screen I need to save as PDF`s, however when I click the print hyperlink button, a pop up comes up and I am unable to use the “click” activity to click save. I have also tried the “send hot key” CTRL “enter” and it will not click save.
1st image is the workflow I have created
2nd image is the view of the pop up once “Print” is clicked
UI Frameworks - Changes the technology used to determine UI elements and their selectors. The following options are available: Default – UiPath proprietary method. Usually works fine with all types of user interfaces. Active Accessibility – an earlier solution from Microsoft for making apps accessible. It is recommended that you use this option with legacy software, when the Default one does not work. UI Automation – the improved accessibility model from Microsoft. It is recommended that you use this option with newer apps, when the Default one does not work.
Hi
Instead of ctrl+enter did we try using just enter key
While using hot keys especially here don’t indicate on any element and use just the hot keys alone
Or
Once that page appears Use Send hot key activity to navigate across buttons using tab key without indicating element
And once reached to save button use a final send hot key activity with key as enter
And ofcourse click text will also work and click image May fail at times if the resolution of that image changes and it can run only if the save button is visible in foreground
And for this
You can save the file with date time in its name so that it will make a unique file every time when created
Like this in Type into activity
“Your filename or filepath” + DateTime.Now.ToString(“hh_mm”) + “[k(enter)]”
This will enter the file name along with hour and minute so that it will be unique one
Instead of ctrl+enter did we try using just enter key
While using hot keys especially here don’t indicate on any element and use just the hot keys alone
Response: I removed the element and only used the “Enter” option. When the pop up came up there was no response and then it seems as the workflow will continue to the next activity an error out.
Or
Once that page appears Use Send hot key activity to navigate across buttons using tab key without indicating element
And once reached to save button use a final send hot key activity with key as enter
Response: Using the tab worked initially, however I noticed when “TAB” was executed it was going behind the pop up and selecting the actual window and executing on the ribbon.