We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Given this simple test:
<?php include dirname(__FILE__).'/../../bootstrap/functional.php'; $browser = new sfTestFunctional(new sfBrowser()); $browser-> info('about page')-> get('/about')-> with('request')->begin()-> isParameter('module', 'about')-> isParameter('action', 'index')-> end()-> with('response')->begin()-> isStatusCode(200)-> checkElement('title', '/About/')-> isValid(true)-> end() ;
I'm getting the following errors
failed to load external entity "file:/[project]/cache/sf_tester_response/w3/TR/xhtml1/DTD/xhtml-symbol.ent"` failed to load external entity "file:/[project]/cache/sf_tester_response/w3/TR/xhtml1/DTD/xhtml-special.ent"`
when the test is trying the isValid(true)
isValid(true)
I checked the path, the files mentioned in errors are there
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given this simple test:
I'm getting the following errors
when the test is trying the
isValid(true)
I checked the path, the files mentioned in errors are there
The text was updated successfully, but these errors were encountered: