Created
August 1, 2012 22:57
-
-
Save DavertMik/3231413 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$I = new WebGuy($scenario); | |
$I->wantTo('register on site and sign in'); | |
$I->click('Register'); | |
$I->fillField('Username','MilesDavis'); | |
$I->fillField('Email','[email protected]'); | |
$I->click('Next'); | |
$generatedPass = $I->grabTextFrom('#password'); | |
$I->click('Login'); | |
$I->fillField('Username','MilesDavis'); | |
$I->fillField('Password',$generatedPass); | |
$I->click('Sign In'); | |
$I->see('Welcome, MilesDavis'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment