So, I am assuming the following:
- you can take the screenshot you want
- you have already identified if it’s Amazon, Walmart, etc.
- Amazon, Walmart, etc is contained in the name of the each screenshot
- You have all the screenshots saved to a single specific folder (we will call it %downloadfolder%
I would design a process to put it in the right folder based on the name it contains. If you determined Amazon or Walmart earlier, you that logic and assign the %Store% variable to each picture. So it essentially looks like this:
get files from download folder
for each file
set the Store variable
Switch Store (you can skip the whole switch process if you can determine the folder name based off the store variable such as %DestinationPath%/%Store%, the you could just skip Switch/Case and go directly to move file)
Case Amazon
set destination folder to Amazon folder
Case Walmart
set destination folder for Walmart
(keep adding cases for all your different stores)
Case Else
If folder doesn’t exist
Create Folder
End If
Set destination folder (based off store name)
End switch
move file from download folder to destination folder
end loop