-
-
Notifications
You must be signed in to change notification settings - Fork 53
Open
Labels
Description
The latest version of the Internet Explorer driver uses shortened google URLs (e.g. https://goo.gl/AtHQuv
). From the browser, the file downloads with the name IEDriverServer_x64_3.14.0.zip
, but this plugin is naming the downloaded file AtHQuv
which is causing it to fail to identify the type of archive it is trying to extract leading to the following error in the Maven output:
No enum constant com.lazerycode.selenium.extract.DownloadableFileType.
I inspected the response with curl
, and the server is responding with a 302
redirect, so you have to account for the redirect to get the right file name. Here is an explanation of how to do that.