Folks, I am using watir+cucumber in my tests and for each feature I am reusing the instance of the browser, that is I create the instance of @@browser = Watir::Browser.new and then reuse this through out my tests, I am using watir-webdriver, my tests where running fine till now, I just added another scenario and I consistently get the below error message:

Connection refused - connect(2) (Errno::ECONNREFUSED)
      /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/net/http.rb:560:in `initialize'
      /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/net/http.rb:560:in `open'
      /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/net/http.rb:560:in `connect'
      /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
      /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/timeout.rb:93:in `timeout'
      /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/net/http.rb:560:in `connect'
      /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/net/http.rb:553:in `do_start'
      /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/net/http.rb:542:in `start'
      /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/net/http.rb:1035:in `request'
link|improve this question

37% accept rate
This is light on information. What kind of scenario did you add? does it fail at the start or when the new scenario starts? Could something else have changed that you have forgotten (such as Firefox was upgraded)? What happens if you remove the new scenario? Good luck. – Dave McNulla Jan 26 at 20:58
It is a typical UI scenario, opens the browser and does some UI actions. It fails right at that scenario, when I remove that scenario everything works fine. Thanks a lot. – Neoruby Alto Jan 27 at 0:37
2  
The scenario you added is using Net::HTTP to connect to something. This connection cannot be made. Could be anything, a typo in the URL for example. Without additional information (such as the scenario and supporting step definitions) we can't be of more help. – Mark Thomas Jan 27 at 1:18
Show us the scenario and the step definition for the failing step. try adding a tag to the scenario (such as @wip) so you can run it in isolation from the other scenarios which will make testing and troubleshooting it easier. – Chuck van der Linden Feb 1 at 1:23
feedback

1 Answer

Just create an instance variable named @browser in your env.rb file, and then you can access it via @browser in your cucumber steps.

link|improve this answer
This is good general advice, but I don't think that's the cause of his problem. – Chuck van der Linden Feb 1 at 1:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.