You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Debug the follwoing code especially when it converts to Map.
You will see that on every run the key order will be different.
@OpenTheApplication
Scenario: Check the default look and feel of the search result page
Given I see the Home page
And the page is in "Logged_OUT" state
Then the searchbox has text as "NORMAL"
Given I am inputing the "free" string as searchterm
When I am clicking search icon
Then I am getting the Search result page
And I should see 16 book
And I should see "free" as the header of the page
Then I have the following filters in order and in different states:
| LANGUAGE | EXPANDED |
| PRICE | EXPANDED |
| FORMAT | EXPANDED |
| PROTECTION | COLLAPSED |
| CATEGORY | COLLAPSED |
| RATING | COLLAPSED |
| RELEASE_DATE | COLLAPSED |
@then("^I have the following filters in order and in different states:$")
public void i_have_the_following_filters_in_order_and_in_different_states(DataTable inputTable) throws Exception {
Map<FiltersEnum, State> test = inputTable.asMap(FiltersEnum.class, State.class);
System.out.print("fg");
}
The text was updated successfully, but these errors were encountered:
Debug the follwoing code especially when it converts to Map.
You will see that on every run the key order will be different.
@OpenTheApplication
Scenario: Check the default look and feel of the search result page
Given I see the Home page
And the page is in "Logged_OUT" state
Then the searchbox has text as "NORMAL"
Given I am inputing the "free" string as searchterm
When I am clicking search icon
Then I am getting the Search result page
And I should see 16 book
And I should see "free" as the header of the page
Then I have the following filters in order and in different states:
| LANGUAGE | EXPANDED |
| PRICE | EXPANDED |
| FORMAT | EXPANDED |
| PROTECTION | COLLAPSED |
| CATEGORY | COLLAPSED |
| RATING | COLLAPSED |
| RELEASE_DATE | COLLAPSED |
@then("^I have the following filters in order and in different states:$")
public void i_have_the_following_filters_in_order_and_in_different_states(DataTable inputTable) throws Exception {
Map<FiltersEnum, State> test = inputTable.asMap(FiltersEnum.class, State.class);
System.out.print("fg");
}
The text was updated successfully, but these errors were encountered: