@YounesGa To have each thread use only 1 line, set the value "max success usage: 1", "max number of simultaneous use: 1".
This is equivalent to the fact that after the flow finishes running with a result of Success, the already used proxy line will not be used again, whereas if there is an error, it will be reused 999999999 times and only one line. for each stream
290a12f6-98cf-4378-9d4c-72a246339adb-image.png
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.
