Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Showing loading screen in UIpath

Tags:

uipath

rpa

I am new to Uipath. Is there any way to display the loading screen while Uipath performing something in background. In background im running java code. Any workaround or can we achieve this in UIPath

like image 205
RAAAAM Avatar asked Dec 13 '22 18:12

RAAAAM


2 Answers

Well as a workaround I guess you could use the parallel activity. On the left side you could load a browser with a loading spinner or whatever type of "loading screen" you want to design.

As long as UiPath is running in the background and you are not interfering with the UI then your "loading screen" will remain on top. In the following example, an Open Browser activity is used to display a loading screen while the robot processes the data in parallel. Once the data has finished processing the loading screen is closed using a Close Tab activity called outside of the parallel activity.

You could even use the Inject Js Script activity to control window size and positioning and a timed Click activity to return the loading screen to the top should focus be lost at any stage during processing.

enter image description here

Apart from this solution and probably a more recommended approach would be to build a custom UiPath activity in .NET, which would have the functionality you require. Refer here to get started with UiPath custom activities.

like image 197
Cristophs0n Avatar answered Feb 12 '23 18:02

Cristophs0n


The only workaround that I can think of is to make this java code itself displays this loading screen.

like image 42
Marzouk Reda Avatar answered Feb 12 '23 18:02

Marzouk Reda