1# language: en 2@smoke @waf 3Feature: AWS WAF 4 5 Scenario: Making a request 6 When I call the "ListRules" API with: 7 | Limit | 20 | 8 Then the value at "Rules" should be a list 9 10 Scenario: Handling errors 11 When I attempt to call the "CreateSqlInjectionMatchSet" API with: 12 | Name | fake_name | 13 | ChangeToken | fake_token | 14 Then I expect the response error code to be "WAFStaleDataException" 15