Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space FUNCTDEV and version SVC2021.2

...

  1. Open the to the configuration file(see Customizing Recording Options).

  2. Find the part of the code that resembles the following fragment:

    Code Block
    ext.options.clickableInputTypes = [
            "submit",  //record click event on submit input type element
            "button", //record click event on button input type element
            "image", //record click event on image input type element
            "radio", //record click event on radio input type element
            "checkbox", //record click event on checkbox input type element "reset" //record click event on reset input type element
    ]
  3. Add a text type anywhere between the brackets "[ ]":

    Code Block
    ext.options.clickableInputTypes = [
           "text", //text on travelocity.com
           "submit",  //record click event on submit input type element
           "button", //record click event on button input type element
           "image", //record click event on image input type element
           "radio", //record click event on radio input type element
           "checkbox", //record click event on checkbox input type element "reset" //record click event on reset input type element
    ]