We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a88478 commit cbb057fCopy full SHA for cbb057f
components/dom_crawler.rst
@@ -182,6 +182,13 @@ Get all the child or parent nodes::
182
$crawler->filter('body')->children();
183
$crawler->filter('body > p')->parents();
184
185
+Get all the direct child nodes matching a CSS selector::
186
+
187
+ $crawler->filter('body')->children('p.lorem');
188
189
+.. versionadded:: 4.2
190
+ The optional selector in ``children($selector)`` method was introduced in Symfony 4.2.
191
192
.. note::
193
194
All the traversal methods return a new :class:`Symfony\\Component\\DomCrawler\\Crawler`
0 commit comments