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
Edgedriver binaries are stored in a bucket here: https://msedgedriver.azureedge.net/ The only way to get a list of available driver versions in a script is parsing XML listing returned with GET https://msedgedriver.azureedge.net/ request. Since driver version 125.0 this listing is not updated. However on the official webdriver page you have newer versions like 125.0, 126.0 and so on: https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/?form=MA13LH#downloads Please fix this listing to show newer versions or suggest another way to get a list of available browser versions. We are using Edgedriver in CI, so manually reading a web page is not a solution.
The text was updated successfully, but these errors were encountered:
Ok, this is not an issue. This API https://msedgedriver.azureedge.net/ is a CDN over Azure Blob Storage (S3 bucket equivalent). In order to list all versions you have to iterate over blob storage keys like this:
Edgedriver binaries are stored in a bucket here: https://msedgedriver.azureedge.net/ The only way to get a list of available driver versions in a script is parsing XML listing returned with
GET https://msedgedriver.azureedge.net/
request. Since driver version 125.0 this listing is not updated. However on the official webdriver page you have newer versions like 125.0, 126.0 and so on: https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/?form=MA13LH#downloads Please fix this listing to show newer versions or suggest another way to get a list of available browser versions. We are using Edgedriver in CI, so manually reading a web page is not a solution.The text was updated successfully, but these errors were encountered: