Dear Support,
I am new with Uipath tool and I need to create an automatic scenario which is
Creating new projects on our website.
So the step that I am blocked in is:
I have to select 2files then attach them to an empty space on our website and wait for them until will be downloaded.
But I didn’t find a solution for this case.
Could you please help me?
Best,
Fatma
So as I mentioned in my previous description :
I have to click on Add file button and then choose 2files and the files will be displayed in the empty space after the Add file button
Is it clear now?
You can get a click activity and indicate the Add file button, and then a type into to type the filepath of your file to the File Explorer window that I assume will open when you click Add file. Click OK or press enter to add the file and repeat this for however many files you have.
Could you please confirm whether you’re using UiPath Studio or StudioX?
I hope if you click on Add file it will open the file explorer. If yes, you can
1)Use click activity to click on Add file button
2)Type activity to type into the filename
3)Click activity to click on ok button
so if the number of files is dynamic then you will have to use a dynamic loop with the file numner
(Directory.GetFiles(“Filepath”)) can give you the list of files in a folder. But counting the number of files , you can make the loop dynamic and add the files.
Also to action on the file manager you will have to give an application scope and other type and click action isnide that.