CRUD ジェネレーターによって生成された単純でわずかに変更された機能テストでは、クローラー テストが誤って失敗します。これは、アサーションの前に作成された外部ファイルの内容を調べることによって決定されます。そして、ページの要素検査によって。jquery コードを手動で実行すると、$("td:contains('Test')").length;
なぜテストが失敗するのでしょうか?
テストクラス:
class ApplianceControllerTest extends WebTestCase {
private $client;
public function __construct() {
$this->client = static::createClient(array(), array(
...
));
$this->client->followRedirects();
}
public function testCompleteScenario() {
// Create a new entry in the database
$crawler = $this->client->request('GET', '/appliance/');
$crawler = $this->client->click($crawler->selectLink('Create a new entry')->link());
// Fill in the form and submit it
$form = $crawler->selectButton('Create')->form(array(
'appliance[appliance]' => 'Test',
// ... other fields to fill
));
$this->client->submit($form);
// $crawler = $this->client->followRedirect();
$content = $this->client->getResponse()->getContent();
file_put_contents('somefile', $content);
// Check data in the show view
$this->assertGreaterThan(0, $crawler->filter('td:contains("Test")')->count(), 'Missing element td:contains("Test")');
}
出力:
要素がありません td:contains("Test") 0 が 0 より大きいことをアサートできませんでした。
キャプチャされたコンテンツの抜粋:
<div class="title">Appliance</div>
<div class="width40">
<table class="record_properties">
<tbody>
<tr>
<th>Id</th>
<td>14</td>
</tr>
<tr>
<th>Appliance</th>
<td>Test</td>
</tr>
<tr>
<th>Enabled</th>
<td>Yes</td>
</tr>
</tbody>
</table>