Feature: Create Item Flow As a user I want to create a new item and see it in my inventory. Scenario: Create a basic durable item Given the inventory is empty And I am on the "new item" page When I fill in "Name *" with "Electric Drill" And I fill in "Category" with "Tools" And I fill in "Brand" with "Bosch" And I click the "Create Item" button Then I should be on "/items/" And I should see "Electric Drill" And I should see "Tools" Scenario: Created item appears in items list Given the inventory is empty And I am on the "new item" page When I fill in "Name *" with "Hammer" And I click the "Create Item" button Then I should be on "/items/" When I click "Back" And I am on the "items" page Then I should see "Hammer" Scenario: Create a consumable with quantity tracking Given the inventory is empty And I am on the "new item" page When I fill in "Name *" with "Printer Paper" And I select "consumable" from "Type" And I fill in "Current" with "8" And I fill in "Original" with "10" And I fill in "Unit" with "reams" And I click the "Create Item" button Then I should be on "/items/" And I should see "Printer Paper"