features/table.feature in druid-ts-1.1.5 vs features/table.feature in druid-ts-1.1.6
- old
+ new
@@ -43,10 +43,15 @@
Then the data for row "Data20" should be nil
Scenario: Retrieve data from a table with an incorrect column header
When I retrieve a table element
Then the data for row "Data3" and column "Data20" should be nil
+
+ Scenario: Retrieve data from a table that does not have a cell which corresponds to a column header
+ When I retrieve a table with thead element
+ Then the data for row "Data5" and column "Col2" should be nil
+
@name
Scenario Outline: Locating table cells on the Page
When I retrieve a table element by "<locate_by>"
Then the data for row "1" should be "Data1" and "Data2"
@@ -90,5 +95,9 @@
Then the data for column "Col1" and row "2" should be "Data1"
Scenario: Retrieve data from the first row of a table with a thead using a column header
When I retrieve a table with thead element
Then the data for column "Col1" and row "1" should be "Col1"
+
+ Scenario: Getting the text from a table
+ Then I should see the text includes "Data1" when I retrieve it by "id"
+ And I should see the text includes "Data2" when I retrieve it by "id"