2018-07-03 14:40:15 +00:00
|
|
|
@setupApplicationTest
|
2018-07-04 12:21:30 +00:00
|
|
|
Feature: components / text-input: Text input
|
2018-07-03 14:40:15 +00:00
|
|
|
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"} |
|
|
|
|
--------------------------------------------------------------------------------
|