This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Partials
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
endGoogle.new do |g|
g.header.sign_in_link.click
end







