Blame view

tests/acceptance/LoginTestCept.php 320 Bytes
d1f8bd40   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
  <?php
  
  $I = new AcceptanceTester($scenario);
  $I->wantTo('perform actions and see result');
  
  $I->amOnPage('/login');
  $I->fillField('#signinform-username', 'admin');
  $I->fillField('#signinform-password', 'admin');
  $I->seeCheckboxIsChecked('#signinform-rememberme');
  $I->dontSee('help-block');
  $I->click('Login', '.btn');