87ecae2c39
1. There are various things tests that can just have intentions added into them, like filters and such like, add intentions to these 2. Start thinking about being able to negate steps easily, which will lead on to a cleanup of the steps
22 lines
771 B
Gherkin
22 lines
771 B
Gherkin
@setupApplicationTest
|
|
Feature: components / text-input: Text input
|
|
Background:
|
|
Given 1 datacenter model with the value "dc-1"
|
|
Scenario:
|
|
When I visit the [Page] page for yaml
|
|
---
|
|
dc: dc-1
|
|
---
|
|
Then the url should be [Url]
|
|
Then I fill in with json
|
|
---
|
|
[Data]
|
|
---
|
|
Then I see submitIsEnabled
|
|
Where:
|
|
--------------------------------------------------------------------------------
|
|
| Page | Url | Data |
|
|
| kv | /dc-1/kv/create | {"additional": "hi", "value": "there"} |
|
|
| acl | /dc-1/acls/create | {"name": "hi"} |
|
|
--------------------------------------------------------------------------------
|