Hire QA – Specialized in QA Recruitment, Technical Interviews and Testing Solutions

CSS/jQuery Extractor in JMeter

Category: JMeter

CSS Selectors are patterns to select elements with the following syntax:
.class
#id
* All elements
div, p all div and p elements
div p all p elements inside div elements

JQuery Selectors can just do the same as CSS Selectors, but with a different syntax:
$(“*”) All elements
$(“#id”)
$(“.class”)
$(“.class,.class”) — $(“.intro, .demo”) – all class elements with the class intro or demo
$(“h1,div,p”) all h1, div and p elements

Leave a Reply

Your email address will not be published. Required fields are marked *