13 lines
549 B
Gherkin
13 lines
549 B
Gherkin
Feature: Getting product information during an order
|
|
|
|
@javascript
|
|
Scenario: Happy flow
|
|
Given there is an open supplier with a menu
|
|
And the product 'Heineken beer' has description 'Brewed in Amsterdam'
|
|
And I am signed in as a user
|
|
And I am on the user homepage
|
|
When the user scans a table QR code
|
|
And the users clicks on the product category "Beer" title
|
|
And the user clicks on the more info button for the product with name 'Heineken beer'
|
|
Then the user page should have product information 'Brewed in Amsterdam'
|