You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
In general the libraries used to do this could probably be swapped out for something much newer and more reliable. As a temporary workaround you can put the resoled URL in your RepositoryMap.xml.
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 nameIEDriverServer_x64_3.14.0.zip
, but this plugin is naming the downloaded fileAtHQuv
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:I inspected the response with
curl
, and the server is responding with a302
redirect, so you have to account for the redirect to get the right file name. Here is an explanation of how to do that.The text was updated successfully, but these errors were encountered: