Capybara, Selenium and VCR playing together nicely

Posted . Visible to the public.

When using capybara (for request specs) together with vcr while trying to run with selenium throws the following error:

  VCR::Errors::UnhandledHTTPRequestError:
       
       ================================================================================
       An HTTP request has been made that VCR does not know how to handle:
         GET http://127.0.0.1:62789/__identify__

Configuring VCR to ignore localhost requests solve the problem.

  c.ignore_localhost = true
Posted by basiszwo to NinjaConcept KB (2012-07-17 22:46)