zap-cdk
    Preparing search index...

    Interface IExcludedElement

    Interface representing an excluded HTML element configuration. IExcludedElement

    interface IExcludedElement {
        attributeName?: string;
        attributeValue?: string;
        description: string;
        element: string;
        text?: string;
        xpath?: string;
    }
    Index

    Properties

    attributeName?: string

    Optional name of the attribute.

    attributeValue?: string

    Optional value of the attribute.

    description: string

    Description of the exclusion.

    element: string

    Name of the element.

    text?: string

    Optional text of the element (exact match and case sensitive).

    xpath?: string

    Optional XPath of the element.