@hackage / happybara

Acceptance test framework for web applications

Latest0.0.1

About

Metadata

  • Last updated , by cstrahan
  • License MIT
  • Categories Development
  • Maintained by: charles.c.strahan@gmail.com

  • Lottery factor: 0

Links

Installation

Readme

About

Happybara is an acceptance test framework inspired by the popular Ruby library "Capybara". A short example of Happybara's expressive DSL:

visit "http://happybara-is-awesome.com"
within $ xpath "//form[@id='vote-for-happybara']" $ do
   fillIn (fillableField "First Name" [ ]) "Bob"
   fillIn (fillableField "Last Name"  [ ]) "Smith"

   click $ button "Vote!" [ disabled False ]

Learning Happybara

I would suggest start with these resources (in order):

Happy web testing!