How to verify files are downloaded from web in Katalon Recorder

I’m using Katalon Recorder 5.4.8 and I have a case where I click on a button to download a file on the web. How can I record the file got downloaded, or what command to use, and how to open the file while recording?

Hi @madisontmcgee

Unfortunately, Once a file is downloaded, it’s in the file system and no longer within the reach of browser extensions. Katalon Recorder can’t interact directly with your file system due to browser extensions’ limitations. If you’re looking to verify the content of your downloaded files I think you’d have to write some kind of bash script or using some programming techniques to check that.

Thanks @ThanhTo, I see.