Hmahwish
Hmahwish

Reputation: 2232

Download a file protractor test case

I am writting a protractor test case to download a file which can be of any type.

How do i check if the file is downloaded correctly or not?

Upvotes: 22

Views: 21978

Answers (1)

Leo Gallucci
Leo Gallucci

Reputation: 16722

I was able to achieve download testing with Chrome.

  1. Follow this config setup: https://stackoverflow.com/a/26127745/511069

  2. Create a function waitFileExists(fileAbsPath) and performs your expectations after the file is completely downloaded: https://stackoverflow.com/a/27031924/511069

Upvotes: 28

Related Questions