removed examples

This commit is contained in:
Jonas Nicklas 2009-11-21 01:19:11 +01:00
parent 39e7f6b1be
commit de91e5a414
2 changed files with 0 additions and 37 deletions

View File

@ -2,7 +2,6 @@ History.txt
Manifest.txt
README.rdoc
Rakefile
examples/webcat.rb
lib/capybara.rb
lib/capybara/cucumber.rb
lib/capybara/driver/culerity_driver.rb

View File

@ -1,36 +0,0 @@
session = Capybara::Session.new('http://localhost:3000')
session.visit '/'
session.driver.trigger :click, '//div[@id=foo]//a'
session.driver.trigger :mouseover, '#foo a.bar' # will be ignored by drivers who do not support it
nodelist = session.find 'li#foo a'
nodelist.empty?
nodelist.first.tag_name # => 'a'
nodelist.first.text # => 'a cute link'
nodelist.first.html # => 'a <em>cute</em> link'
nodelist.first.attributes # => { :href => '/blah' }
nodelist.first.trigger :click
session.request.url # => '/blah'
session.response.ok? # => true
# fancy stuff, just builds on the stuff above!
session.click_link 'a cute link'
session.click_button 'an awesome button'
session.within '#foo' do
click_link 'a cute link'
end
session.fill_in 'foo', :with => 'bar'
session.choose 'Monkey'
session.check 'I am awesome'
session.wait_for '#fooo"
# In cuke:
When 'I am awesome' do
page.check 'I am awesome'
page.click_button 'FooBar'
end