This works
$this->assertEquals(1, $crawler->filter('.elementClass')->count()); // filter by class
But, this doesn’t seem to work.
$this->assertEquals(1, $crawler->filter('#elementId')->count()); // filter by id
Any ideas?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Symfony2 DOM Crawler filter internally uses DOMXPath, so you can find answer for your question on this thread
query for filter should be something like(note that code bellow is untested, I’m sure link above will help you)