features/table.feature in druid-ts-0.0.1 vs features/table.feature in druid-ts-1.1.0

- old
+ new

@@ -29,15 +29,22 @@ And the data for row "2" should be "Data3" and "Data4" And the table should have "2" rows And each row should contain "Data" And row "1" should have "2" columns And each column should contain "Data" + And the data for the first row should be "Data1" and "Data2" + And the data for the last row should be "Data3" and "Data4" @multi Scenario Outline: Locating table using multiple parameters When I retrieve a table element bys "<param1>" and "<param2>" Then the data for row "1" should be "Data1" and "Data2" Examples: | param1 | param2 | | class | index | | name | index | + + @locator + Scenario: Finding a table dynamically + When I retrieve a table element while the script is executing + Then the data for row "1" should be "Data1" and "Data2"