NoFuzzyFormDetection ForceFuzzyFormDetection

These actions of a HttpScriptingRule can be used to override the setting Fuzzy form detection from the profile settings for individual HTTP requests.

This rule allows fuzzy form detection (provided this is enabled in the profile settings) only for forms which contain a form field named sid.

<HttpScriptingRule>
  <Name>No fuzzy form detection except for forms with field sid</Name>
  <Active>true</Active>
  <Action>NoFuzzyFormDetection</Action>
  <Conditions>
    <Not>
      <Exists>
        <ApplyTo>Form.Field(Name:sid)</ApplyTo>
      </Exists>
    </Not>
  </Conditions>
</HttpScriptingRule>