Index: src/components/org/apache/jmeter/extractor/HtmlExtractor.java =================================================================== --- src/components/org/apache/jmeter/extractor/HtmlExtractor.java (revision 1837275) +++ src/components/org/apache/jmeter/extractor/HtmlExtractor.java (working copy) @@ -171,7 +171,7 @@ getExtractorImpl().extract(expression, attribute, matchNumber, inputString, result, found, "-1"); } else { if (inputString==null && log.isWarnEnabled()) { - log.warn("No variable '{}' found to process by CSS/JQuery Extractor '{}', skipping processing", + log.warn("No variable '{}' found to process by CSS Selector Extractor '{}', skipping processing", getVariableName(), getName()); } return Collections.emptyList(); Index: src/core/org/apache/jmeter/resources/messages.properties =================================================================== --- src/core/org/apache/jmeter/resources/messages.properties (revision 1837275) +++ src/core/org/apache/jmeter/resources/messages.properties (working copy) @@ -432,8 +432,8 @@ html_assertion_file=Write JTidy report to file html_assertion_label=HTML Assertion html_assertion_title=HTML Assertion -html_extractor_title=CSS/JQuery Extractor -html_extractor_type=CSS/JQuery Extractor Implementation +html_extractor_title=CSS Selector Extractor +html_extractor_type=CSS Selector Extractor Implementation http_implementation=Implementation: http_response_code=HTTP response code http_url_rewriting_modifier_title=HTTP URL Re-writing Modifier Index: src/functions/org/apache/jmeter/functions/RandomFromMultipleVars.java =================================================================== --- src/functions/org/apache/jmeter/functions/RandomFromMultipleVars.java (revision 1837275) +++ src/functions/org/apache/jmeter/functions/RandomFromMultipleVars.java (working copy) @@ -38,7 +38,7 @@ * Those kind of variables are extracted by: * - Regular Expression extractor * - JSON extractor - * - CSS/JQuery extractor + * - CSS Selector extractor * - XPath Extractor * * @since 3.1 Index: xdocs/changes.xml =================================================================== --- xdocs/changes.xml (revision 1837275) +++ xdocs/changes.xml (working copy) @@ -230,6 +230,7 @@
  • 62252HTTP header merging logic does not correspond to the documentation
  • 62554BoundaryExtractor : Field to check is not reset
  • 62553Random element might return same value even if property "Per thread user (User)" is set to TRUE
  • +
  • 62593Rename CSS/JQuery Extractor to CSS Selector Extractor. Contributed by orimarko at gmail.com
  • Functions

    Index: xdocs/usermanual/component_reference.xml =================================================================== --- xdocs/usermanual/component_reference.xml (revision 1837275) +++ xdocs/usermanual/component_reference.xml (working copy) @@ -5661,8 +5661,8 @@ and for further information on JMeter regular expressions.

    - -

    Allows the user to extract values from a server response using a CSS/JQuery selector like syntax. As a post-processor, + +

    Allows the user to extract values from a server HTML response using a CSS Selector syntax. As a post-processor, this element will execute after each Sample request in its scope, applying the CSS/JQuery expression, extracting the requested nodes, extracting the node as text or attribute value and store the result into the given variable name.

    @@ -5684,7 +5684,7 @@ For match number = 0 or negative, all qualifying samples will be processed. For match number > 0, matching will stop as soon as enough matches have been found. - + 2 Implementations for CSS/JQuery based syntax are supported:
    • JSoup
    • @@ -5836,7 +5836,7 @@
    • "Use Tidy" should be checked on for HTML response. Such response is converted to valid XHTML (XML compatible HTML) using Tidy
    • "Use Tidy" should be unchecked for both XHTML or XML response (for example RSS)
    - For HTML, CSS/JQuery Extractor is the correct and performing solution. Don't use XPath for HTML extractions. + For HTML, CSS Selector Extractor is the correct and performing solution. Don't use XPath for HTML extractions.
    Sets the Tidy Quiet flag If a Tidy error occurs, then set the Assertion accordingly Index: xdocs/usermanual/functions.xml =================================================================== --- xdocs/usermanual/functions.xml (revision 1837275) +++ xdocs/usermanual/functions.xml (working copy) @@ -703,7 +703,7 @@ The variables can be simple or multi-valued as they can be generated by the following extractors: