Using jMeter 4.0, I need to extract the value of an element which I cannot identify directly, but I can identify one of its siblings.
I want to use jQuery like so: $("#someId").parent().find(".title") That is garden variety jQuery: 'get the parent of the element, then within it get the element with the class title'.
This sounds simple enough, but I cant get it to work in jMeter. All examples/articles I could find about the CSS/jQuery extractor use CSS rather than jQuery.
Is there anything special I should do? Does anyone have an example?