Project

test_right

0.03
Repository is archived
No commit activity in last 3 years
No release in over 3 years
An opinionated browser testing framework
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0.9.12

Runtime

 Project Readme

Test::Right - Opinionated full-stack browser testing

Test::Right is a testing framework designed to help users get maximum value out of browser testing. It provides a flexible Page Object model for building robust, reliable tests quickly and easily. No more slogging through XPaths in Selenium IDE: Test::Right is the right way to build browser tests.

Setup

gem install test_right
cd MY_APP
test_right install

The test_right executable will create a default directory structure in test/right for you to put your tests in.

Begin by setting the base_url setting in test/right/config.yml to the base URL of your application staging environment. Then add the necessary code to reset your application state and launch your server to setup.rb.

Tests are defined in terms of actions and properties on widgets. A widget is a piece of functionality present on one more more pages of your application. A single page can have many widgets, and multiple copies of a widget may appear on the same page.

To get started, add widget definitions to the widgets/ directory. A widget defines its elements in terms of standard Selenium 2 selectors and actions in terms of those elements. For example, something like this in test/right/widgets/login.rb:

class LoginWidget < Test::Right::Widget
  field :username, :id => 'username'
  button :login, :css => "input[type=submit]"

  action :login do |username, password|
    fill_in :username, username
    click :login
  end
end

class CartWidget  < Test::Right::Widget
  element :count, :id => 'item_count'

  property :number_of_items do
    get_element(:count).text
  end
end

Once your widgets are setup, write tests for features of your application in test/right/features. For example, something like this would go in test/right/features/shopping_cart.rb:

class ShoppingCartFeature < Test::Right::Feature
  def setup
    with LoginWidget do |w|
      w.login
    end
  end

  def test_adding_item
    with ItemWidget do |w|
      w.add_an_item
    end

    with CartWidget do |w|
      assert_equal 1, w.number_of_items 
    end
  end
end

Learn more on the Test::Right wiki at https://github.com/saucelabs/test_right/wiki