init.samples.todo.Todo.meta Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwen-web Show documentation
Show all versions of gwen-web Show documentation
Web automation engine for Gwen
@Sample
Feature: Todo Meta
@Context
@StepDef
Scenario: a new todo list
Given my todo list can be located by css ".todo-list"
When I navigate to "https://todomvc.com/examples/react/dist/"
Then the page title should contain "TodoMVC"
And my todo list should not be displayed
@Action
@StepDef
@DataTable
@ForEach
Scenario: the following items are added
Given the todo field can be located by class "new-todo"
When I enter Item in the todo field
Then my todo list should contain Item
@Assertion
@StepDef
Scenario: the list will contain items
Given the displayed count can be located by css ".todo-count"
Then my todo list should be displayed
And the displayed count should contain "$"
© 2015 - 2024 Weber Informatics LLC | Privacy Policy