Watir::IE.new do
goto('http://www.google.com')
text_field(:name, 'q').set 'ruby'
button(:name, 'btnG').click
end
the block is evaluated in the context of a new IE object (using instance_eval)
Description
Watir::IE.new do
goto('http://www.google.com')
text_field(:name, 'q').set 'ruby'
button(:name, 'btnG').click
end
the block is evaluated in the context of a new IE object (using instance_eval)