2

Chrome driver stopped working for Chrome browser version 55 with the latest Chrome driver 2.24 and Web Driver 2.48.

I am getting the error "HTTP request to the remote web driver server for URL timed out after 60 seconds"

some months back i faced the same issue, i followed the same suggestion as mentioned here, it worked well till chrome version 54.

Can you suggest for Chrome version 55

Note: Its working fine in local, not working when hosting in IIS

Community
  • 1
  • 1
JKK
  • 208
  • 3
  • 7

1 Answers1

3

Use the Chrome in the standalone package that you downloaded instead of your system installation.You can do this by:

ChromeOptions options = new ChromeOptions();
options.BinaryLocation = @"path\\to\\the\\standalone\\chrome.exe"; 
  // chrome installation exe

for : more

Sharathi RB
  • 787
  • 2
  • 8
  • 24
  • Its worked for me. Thanks a lot. I have used chrome version 53 exe in binary location. if we use chrome version 55 then its not working. – JKK Dec 21 '16 at 11:39
  • If you put @"" why bother adding double //, that's the whole point of using @ before a string. – NewBie1234 May 04 '20 at 13:39