I am working on a tests scenario that downloads a file from a website and adds it to folder. For the download part I am using the code described here (for Firefox). The main problem was encountered when in my tests I am waiting for the file to be downloaded:
def verify_csv_file_exists
path = Dir.getwd + "/downloads/"
until File.exist?("#{path}*.csv") == true
sleep 1
end
end
When running the tests, the procedure above never stops, because it cannot see the file in the directory, although the file is downloaded.
Does anyone know a way how I can handle this situation?
Thank you.