-
Notifications
You must be signed in to change notification settings - Fork 34
Partials
scudco edited this page Sep 13, 2010
·
3 revisions
Partials are good for when you’ve got headers, footers, or other common areas of a page repeated on multiple pages. Partials are Pages that do not follow the FooPage naming convention and live in ./lib/site_name/pages/partials
$ ./script/generate partial header google
will generate a partial for the Google site and can be accessed as follows given the following partial code
module Google
class Header < ::Taza::Page
element(:sign_in_link) { browser.link(:text,'Sign in') }
end
end
Google.new do |g|
g.header.sign_in_link.click
end