12 lines
304 B
Gherkin
12 lines
304 B
Gherkin
# features/home.feature
|
|
|
|
Feature: Homepage
|
|
|
|
Loading the homepage is the initial starting point for this tool
|
|
|
|
Scenario: Homepage Loads with a form
|
|
Given I visit the homepage
|
|
Then I should see text "URL Shortener"
|
|
And I should see a form field "url"
|
|
And I should see a "Submit" button
|