@radb0310 Thank you for the answer, can you please elaborate more
i want to download a file also, but i can't find a way to choose a location for it. And also i can't grab the URL of the file from the website.
when i click on the button i have this message :
(File is downloading : BrowserautomationStudio is downloading file. You can wait for it and obtain file name with "Wait File Download" action.)
Getting the name of the uploaded file
-
Than just take full file path from same variable without "|notreuse",
and extract just filename using string module or javascript.Guess youre doing it in a loop, so same variable that you used
with "|notreuse" will give its content without "|notreuse" in same
loop cycle. -
Nope there is no "|random". "|notreuse" is option for resources in BAS.
You can use it without "|notreuse" but its meant for use in multiple threads,
so in that case each new browser instance will use different line from resource.
It looks like you are doing it in one browser instance, so you have to use "|notreuse"
because of that.Other option is to use "File search" and read all files that neds to be
uploaded into list variable. Than you can use that list and extract needed
data (title - name of file), and upload according to data in the list, even
randomize it if needed.
