I got this this test:
<?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");
?>
The test execution on fills in the email field, and then it stops. If I switch the password field with the email field, only the password is entered in respective field and then the test stops. Code looks fine to me. Anyone got any idea?