This is documentation for the next version of K6. For the latest stable release, go to the latest version.
Selection.has(selector)
Reduce the set of matched elements to those that have a descendant that matches the selector. Mimics jquery.has.
Parameter | Type | Description |
---|---|---|
selector | string | A string containing a selector expression to match elements against. |
Returns
Type | Description |
---|---|
Selection | A Selection. |
Example
import { parseHTML } from 'k6/html';
import { sleep } from 'k6';
export default function () {
const content = `
<ul>
<li>list item 1</li>
<li>list item 2
<ul>
<li>list item 2-a</li>
<li>list item 2-b</li>
</ul>
</li>
<li>list item 3</li>
<li>list item 4</li>
</ul>
`;
const doc = parseHTML(content);
const sel = doc.find('li').has('ul');
console.log(sel.html());
sleep(1);
}