0

I am running my Selenium automation code in Edge via Jenkins and getting the below error :

Caused by: io.github.bonigarcia.wdm.config.WebDriverManagerException: io.github.bonigarcia.wdm.config.WebDriverManagerException: Error HTTP 403 executing https://msedgedriver.azureedge.net/?restype=container&comp=list

It is running fine on Chrome and Firefox

Shawn
  • 4,064
  • 2
  • 11
  • 23
ValiTu
  • 1

1 Answers1

0

The HTTP response code 403 indicates that you may have hit the traffic rate limit of GitHub.

To avoid this problem, WebDriverManager can make authenticated requests using a personal access token. See the advanced configuration section to discover how to set up this token in WebDriverManager.

Additionally, if you are using WebDriverManager 5.3.0, this issue should not happen anymore (even without a GitHub token).

For more information, you can refer to this doc.

Kendrick Li
  • 1,355
  • 1
  • 2
  • 10
  • I tried using WebDriverManager 5.3.0. I even tried with 5.4.0 version but does not seem to work. – ValiTu Jul 20 '23 at 10:56
  • @ValiTu Sounds like the doc needs an update. You can also report this issue on [their GitHub page](https://github.com/bonigarcia/webdrivermanager/issues). – Kendrick Li Jul 24 '23 at 07:20