Displaying 1 result from an estimated 1 matches for "seleniumhelper".
2007 Sep 27
1
using @variables in an ''it'' block
Hi folks,
I''m somewhat new to the current RSpec release - at work we are still
using 0.8.something, with "context ''blah'' do ... specify ''should
thing'' ..."
We have some helper code to automatically mix-in selenium:
module SeleniumHelper
include SpecHelper
...
def initialize(arg)
@selenium = SeleniumHelper.selenium
end
(selenium.rb also adds some method-missing magic so we don''t need to
say ''@selenium.open(foo)'' we can just say ''open(foo)'', but that''s not
particularly...