I am having a lot of difficulty to create a simple robot to export as .pdf from chrome.
Can anyone point me out how to solve it?
I tried to follow the tutorial on https://www.youtube.com/watch?v=JCBeeJPzppA
but could not make it work.
I am having a lot of difficulty to create a simple robot to export as .pdf from chrome.
Can anyone point me out how to solve it?
I tried to follow the tutorial on https://www.youtube.com/watch?v=JCBeeJPzppA
but could not make it work.
Problem is, the print dialog is a windows element and cannot be controlled by the extension, so you need to use windows get element.
Kind of like here https://youtu.be/OYbsgbOHh7c?si=aYDtn73Nz5qLIz98
I tried that.
Step 1. Use to get the click action on the to access Chrome menu.
This step works
Step 2. Use to get the click action on the in Chrome menu.
This step does not work because when I need to click on the 3 dots AND then on the Print menu.
I tried to use get Selector on OpenRPA, then go to Chrome, then click three dots, then click Print menu.
But the OpenRPA selector returns after I click on the 3 dots.
I also tried to click on the Chrome 3 dots, then go to OpenRPA to use the selector.
But when I do that, Chrome closes the 3 dots menu.
I also tried to send CRTL + P keys, as this invokes the print menu, but could not make it work.
Solved the issue.
Steps
Type Text “{LCONTROL down}{KEY_P down}{LCONTROL up}{KEY_P up}”
to access the print menu
Use a Delay of 00:00:01
to allow time for the print menu to appear
Type Text “{enter}”
to print
Note: this will use the default printer.
Use a Delay of 00:00:01
to allow time for the save file to appear
Get element to access the file name
Type Text “{enter}”
to actually save the file
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.