I need to suggest another feature for the automator which I think needs to be addressed.
When using the automator for harvesting and adding a loop, the harvester will save each session in the same file. While this is not an issue, since scrapebox appends the urls to the same file and does not overwrite it, it makes the file very large in size with time and it's not practical.
What I suggest is add some kind of numbering for each session when the automator is used.
Example: I have 2 harvesting commands (lets call them engines 1 and engines 2) in a loop into one automator job. Each of them scrapes for different engines and it saves the urls in respective files: engines1.txt and engines2.txt. Scrapebox will append the newly scraped urls to those files after each session is finished. However with time, those two files become very large and a hard to maintain.
If Scrapebox will add a counter to each session and save each finished harvesting session in the same folder as:
engines1_1.txt, engines2_1.txt ;
engines1_2.txt, engines2_2.txt ;
engines1_3.txt, engines2_3.txt ...and so on...
It will be much easier.
And if the automator job is stopped and then started again, and the files engines1_1,1_2 and 1_3 exist in the folder, scrapebox should continue the counter from where it left and not overwrite the existing files. Example: engines1_4, engines1_5... etc..