[rspec-users] [Cucumber] after feature hook?
Joseph Wilk
joe at josephwilk.net
Mon Jan 5 10:13:24 EST 2009
aidy lewis wrote:
> Hi Alsak,
>
> I am finding it difficult to separate my Acceptance Tests unless I
> have lengthy scenarios.
>
> One scenario would be one sequence of action etc - until a goal is reached.
>
> At the end of the feature, I would like the browser to close:
So you are using scenarios to get the browser into a certain state and
then the next scenario relies on continuing work on that state?
I guess this must mean one scenario failing breaks all following
scenarios in the feature?
> If the
> browser closes on each scenario - they I have to get back to the
> previous state. This is expensive with browser based tests.
>
> Aidy
>
>
A bit of a side note but can I ask why you need the browser to close
after a scenario or feature?
In Selenium (not sure if Watir is the same) the time expense of starting
a new browser instances per scenario or per feature is too high (It can
take 7/8 seconds for selenium to start a browser). So rather than
closing and opening new browsers we use a single browser instance open
throughout the test run. We terminate the session before each scenario
(By accessing logout).
@@@ruby
World do
...
browser.open '/logout'
...
end
@@@
--
Joseph Wilk
http://blog.josephwilk.net
>
> On 05/01/2009, aslak hellesoy <aslak.hellesoy at gmail.com> wrote:
>
>>
>> On Mon, Jan 5, 2009 at 2:33 PM, aidy lewis <aidy.lewis at googlemail.com>
>> wrote:
>>
>>> Hi,
>>>
>>> Is there a hook or a method to execute some code after a whole feature
>>> has run or will I need to embed that in a 'Then'?
>>>
>>>
>> May I ask what you're planning to use it for?
>>
>> Aslak
>>
>>> Regards
>>>
>>> Aidy
>>> _______________________________________________
>>> rspec-users mailing list
>>> rspec-users at rubyforge.org
>>> http://rubyforge.org/mailman/listinfo/rspec-users
>>>
>>>
>> _______________________________________________
>> rspec-users mailing list
>> rspec-users at rubyforge.org
>> http://rubyforge.org/mailman/listinfo/rspec-users
>>
>>
> _______________________________________________
> rspec-users mailing list
> rspec-users at rubyforge.org
> http://rubyforge.org/mailman/listinfo/rspec-users
>
>
More information about the rspec-users
mailing list