features/table.feature in druid-ts-1.2.4 vs features/table.feature in druid-ts-1.2.5

- old
+ new

@@ -102,5 +102,26 @@ When I retrieve a table element Then the table should be like the expected one | Table | Header | | Data1 | Data2 | | Data3 | Data4 | + + Scenario: Get rows by text with special chars + When I retrieve a table element with regex characters + Then the data for row "Price1 |" should be "Price1 |" and "$420.99" + And the data for row "rice |" should be "Price |" and "$69.99" + And the data for row "$420.99" should be "Price1 |" and "$420.99" + And the data for row "$420" should be "Price1 |" and "$420.99" + + Scenario: Retrieving column values using header string + When I ask for the column values for "Header" + Then I should receive: + | values | + | Data2 | + | Data4 | + + Scenario: Retrieving column values using a column number + When I ask for the column values for column 1 + Then I should receive: + | values | + | Data2 | + | Data4 |