Instead of clicking on download button you have to take download link.
You can do that with "get element atribute", and as atribute use href.
Than use that link in "Download" action. There you have to define
full download file path along with downloaded file name and extension.
So you can define your desirable folder.
How to load CSV file MultiLine
-
@Diya.3rif BAS has internal function csv_parse, but it doesn't handle rows without commas.
So this won't work"AA 11111 11111" "BBB 2222 2222"while this
"AA 11111 11111", "BBB 2222 2222"will work.
Anyway there is regexp support, so you can process text very easy.
This regexp should work for you\"([^\"]+)\"And here is project which solves your problem.
0_1504114213349_MultilineCsvProcess.xml

