Thanks.
On Oct 24, 8:31 pm, Ashley Moran <[email protected]> wrote: > On Oct 23, 2009, at 2:47 pm, abhisheksreepal wrote: > > > describe 'should Navigate to Gmail Login Screen' do > > it 'Enter username' > > $ie = Watir::IE.new > > $ie.goto($email) > > $ie.text_field(:id, 'Email').set($username) > > #$ie.text.should ('Aidy Lewis') > > end > > You missed the block delimiters: > > describe 'should Navigate to Gmail Login Screen' do > it 'Enter username' do > $ie = Watir::IE.new > $ie.goto($email) > $ie.text_field(:id, 'Email').set($username) > #$ie.text.should ('Aidy Lewis') > end > end > > Ashley > > --http://www.patchspace.co.uk/http://www.linkedin.com/in/ashleymoranhttp://aviewfromafar.net/ > > _______________________________________________ > rspec-users mailing list > [email protected]http://rubyforge.org/mailman/listinfo/rspec-users _______________________________________________ rspec-users mailing list [email protected] http://rubyforge.org/mailman/listinfo/rspec-users
