Hello,
I would like to know how the internal logic for rules with multiple conditions works.
For example, let's say we have 2 conditions and a rule will be matched if all conditions are met:
- URL contains 'example.com'
- Response Body contains 'string'
- Are the conditions checked in any particular order (i.e. URL is checked first)?
- What happens if the first condition fails, does it stop and not check for the second condition?
Thanks