Your first test
caution
For autocompletion and execution from ide while writing your tests, read this section
Writing test
To write your first test, create the file uuv/e2e/first-test.feature
in the project root with the following content :
uuv/e2e/first-test.feature
Feature: Hello World
Scenario: Search - Successful case
When I visit path "https://e2e-test-quest.github.io/weather-app/"
Then I should see a title named "Welcome to Weather App"
You can find test examples here :
- weather-app.feature
- Kata E2E UUV : a set of exercises to learn how to write scenarios