Feature: List item Background: Given I am on the static elements page Scenario: Getting the text from a list item When I get the text from the list item Then the text should be "Item One" Scenario Outline: Locating list items on the page When I search for the list item by "" Then the text should be "Item One" Scenarios: | search_by | | id | | class | | xpath | | index | | name | Scenario Outline: Locating list items using multiple parameters When I search for the list item by "" and "" Then the text should be "Item One" Scenarios: | param1 | param2 | | class | index | | name | index |