Sha256: 3af7b69ab1b9742b07550edd5b6d26b4e20df75db2687ac429c4f3f7f0dbd731

Contents?: true

Size: 877 Bytes

Versions: 1

Compression:

Stored size: 877 Bytes

Contents

Feature: Delete a page

  Background:
    Given I go to the home page
    And I wait for ajax call complete


  @javascript
  Scenario: Delete a page
    When I right click node "./home.txt"
    And I follow "Delete node"
    Then I should see dialog box titled "Confirm"

    When I press "Yes"
    And I reload the page
    Then I should not see "home"

  @javascript
  Scenario: Delete a page when tab is open
    When I click node "./home.txt"
    And I click node "./test.txt"
    And I right click node "./home.txt"
    And I follow "Delete node"
    Then I should see dialog box titled "Confirm"

    When I press "Yes"
    Then I should have the following open tabs:
      | test |


    When I right click node "./test.txt"
    And I follow "Delete node"
    Then I should see dialog box titled "Confirm"
    When I press "Yes"
    Then I should have no open tabs
    

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rwiki-0.1.3 features/delete_page.feature