15 lines
424 B
Gherkin
15 lines
424 B
Gherkin
Feature: Finance UI
|
|
|
|
Background:
|
|
Given I am logged in as "admin@perauset.org"
|
|
|
|
Scenario: Create finance record
|
|
When I navigate to "/finance"
|
|
And I click "Add Record"
|
|
And I fill in "Name" with "Kitchen Supplies"
|
|
And I fill in "Amount" with "150"
|
|
And I select "Expense" from "Type"
|
|
And I select "Kitchen" from "Category"
|
|
And I click "Create Record"
|
|
Then I should see "Kitchen Supplies"
|