我得到了这个测试:
<?php
$I = new WebGuy($scenario);
$I->wantTo('ensure that user can log in to Nova.');
$I->amOnPage('/');
$I->see('ABC');
// Login
$I->fillField("//input[@name='email']", "test@mail.com"); //<-- Test stops here!
$I->wait(1000);
$I->fillField("//input[@name='password']", "Apassword");
$I->click("//input[@name='save']");
$I->see("Test");
?>
测试执行填写电子邮件字段,然后停止。如果我用电子邮件字段切换密码字段,则仅在相应字段中输入密码,然后测试停止。代码对我来说看起来不错。有人知道吗?