A job can have tests for multiple expressions, and multiple tests can be created for expressions having the same URL.
jobs:
- type: something
tests:
- name: 'test one' # Name of the test, optional
type: url # Specifies that the test is of type 'url'
url: http://www.example.com/path # String: The URL to be tested.
operator: 'and' # One of 'and', 'or', default is 'or'
requestHeaderRegex: # String: The regular expression to be matched in the request header, optional
requestBodyRegex: # String: The regular expression to be matched in the request body, optional
responseHeaderRegex: # String: The regular expression to be matched in the response header, optional
responseBodyRegex: # String: The regular expression to be matched in the response body, optional
onFail: 'info' # String: One of 'warn', 'error', 'info', mandatory