r3h6 / typo3-browserkit-testing
TYPO3 的 BrowserKit 测试
0.4.4-beta
2023-12-08 16:33 UTC
Requires
- symfony/browser-kit: ^5.4 || ^6.0
- symfony/css-selector: ^5.4 || ^6.0
- typo3/testing-framework: ^7.0
Requires (Dev)
- blastcloud/guzzler: ^2.0
- saschaegerer/phpstan-typo3: ^1.1
- typo3/cms-felogin: ^12.4 || ^11.5
- typo3/cms-fluid-styled-content: ^12.4 || ^11.5
- typo3/cms-form: ^12.4 || ^11.5
- typo3/coding-standards: ^0.5.2
Suggests
- blastcloud/guzzler: Supercharge your app with a testing library specifically for Guzzle
This package is auto-updated.
Last update: 2024-09-08 18:03:59 UTC
README
将 Symfony 的 BrowserKit 组件 带到 TYPO3 测试框架。
示例
class MyTestCase extends BrowserKitTestCase { public function testExample() { $client = self::getClient($this); $crawler = $client->request('GET', '/'); self::assertSelectorExists('.example'); } }
另请参阅 tests/Functional/DomCrawlerAssertionsTest.php
断言
您可以在 Symfony 的测试文档 中找到详细信息。
❌ 响应断言
❌ 请求断言
❌ 浏览器断言
✅ 爬虫断言
✅ 邮件发送器断言
已知问题
- 文件上传尚未实现