[wtr-general] Re: getting started with Watir and Watir-RSpec

2016-10-09 Thread Jarmo Pertman
Hello, watir-rspec isn't needed per se, which means that you can use just watir itself. As stated in watir-rspec readme , it will make it slightly easier to manage browser opening/closing, adds few helpful matchers and creates nice

[wtr-general] Re: goto method not found

2016-10-09 Thread Jarmo Pertman
"type: :request" is used so that RSpec would include Watir-specific helpers only into specs where they are actually needed (so-called request/integration type specs) and not into every test (e.g. regular unit tests, controller tests, model tests etc.). You can remove that additional filter,