Sha256: b5f69832cc6591db91efc0bb5c962e15eedd2e78662e43d2eabb19075689a126

Contents?: true

Size: 1.55 KB

Versions: 3

Compression:

Stored size: 1.55 KB

Contents

Feature: Paging form panel
  In order to value
  As a role
  I want feature

Background:
  Given the following books exist:
  | title               | exemplars | digitized | notes        | published_on | last_read_at |
  | Journey to Ixtlan   | 10        | true      | A must-read  | 2001-01-02   | 2011-01-02   |
  | Lolita              | 5         | false     | To read      | 1988-04-05   | 2011-03-04   |
  | Getting Things Done | 3         | true      | Productivity | 2005-06-07   | 2011-12-13   |

@javascript
Scenario: Paging through records
  When I go to the BookPagingForm test page
  Then I should see "Journey to Ixtlan"

  When I go forward one page
  And  I wait for response from server
  Then the form should show title: "Lolita"

  When I go forward one page
  And  I wait for response from server
  Then the form should show title: "Getting Things Done"

#@javascript
#Scenario: Searching
  #When I go to the BookPagingForm test page
  #And I press "Search"
  #And I wait for response from server
  #And I expand combobox "undefined_attr"
  #And I select "Exemplars" from combobox "undefined_attr"
  #And I expand combobox "exemplars_operator"
  #And I select "Less than" from combobox "exemplars_operator"
  #And I fill in "exemplars_value" with "5"
  #And I press "Search" within "#book_paging_form_panel__search_form"
  #And I wait for response from server
  #Then the form should show title: "Getting Things Done"

@javascript
Scenario: I must see total records value
  When I go to the BookPagingForm test page
  Then I should see "of 3" within paging toolbar

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
netzke-basepack-0.8.2 test/basepack_test_app/features/paging_form_panel.feature
netzke-basepack-0.8.1 test/basepack_test_app/features/paging_form_panel.feature
netzke-basepack-0.8.0 test/basepack_test_app/features/paging_form_panel.feature