@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.)
Blacklist lines from a .txt file
-
My script use 1 line from a txt file called user.txt every few minutes. I'm looking to save the used line to blacklist.txt file and when script go to the next line, it should check in the blacklist.txt if the line exist. If exist then it should ignore it and move to the next line.
Thanks for any help
-
@andreiem run the code
while ( true ) { [[USER]] = {{user|notreuse}}; if( RMap( "blacklist" ).indexOf( [[USER]] ) != -1 ) break; }{{user}} - file resource user.txt
"blacklist" - file resource name blacklist.txtin [[USER]] will be something that is not in blacklist.txt.