All Downloads are FREE. Search and download functionalities are using the official Maven repository.

init.features.samples.todo.Todo.meta Maven / Gradle / Ivy

The newest version!
@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 be empty

  @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