Reputation: 318
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
Upvotes: 2
Views: 11518
Reputation: 877
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
Upvotes: 3