wiki.techinc.nl/tests/browser/features/edit_page.feature
Željko Filipin 9873815e55 Cleanup Cucumber tags in Selenium tests
Removing no longer used @login tag. We are no longer running tests
using internet explorer or phantomjs, so removing those tags too.

Renamed @clean tag with @vagrant, since it makes more sense and is used
in other repositories.

Bug: T127423
Change-Id: Ib5e0a1600c3df45889e97d5ff52cd0a77a15001f
2016-02-29 11:29:41 +00:00

11 lines
414 B
Gherkin

@chrome @firefox @vagrant
Feature: Edit Page
Scenario: Create and edit page
Given I go to the "Editing Test Page" page with content "This is a page to test editing"
When I click Edit
And I edit the page with "Edited and a random string"
And I click Preview
And I click Show Changes
And I save the edit
Then the edited page content should contain "Edited and a random string"