Your firefox browser is starting because Capybara is using default web-driver (selenium
).
If you would like not to load browser, you can switch capybara javascript driver
to webkit
for example. Please, consider this to understand how to install webkit driver.
With regards to this Net::ReadTimeout
I think that you need to specify correct host and correct port for Capybara in your spec_helper:
spec_helper.rb:
# Capybara.server_port = 3001
Capybara.host = 127.0.0.1 # Try to experiment with this option !
Capybara.javascript_driver = :webkit # or :selenium
Capybara.current_driver = :webkit # or :selenium
Capybara.run_server = true #Whether start server when testing
# Capybara.default_selector = :css #:xpath #default selector , you can change to :css
Capybara.default_wait_time = 3 #When we testing AJAX, we can set a default wait time
Capybara.ignore_hidden_elements = false #Ignore hidden elements when testing, make helpful when you hide or show elements using javascript
If you have problems with 127.0.0.1
address It can be due to the wrong proxy config in your shell. Try to start you webserver on adress %your_IP_adress%
It can be helpful to inspect this topic in order to understand how to set chrome browser instead of firefox if you are using Selenium web-driver