Skip to content

Instantly share code, notes, and snippets.

@DavertMik
Created May 20, 2013 21:32
Show Gist options
  • Save DavertMik/5615747 to your computer and use it in GitHub Desktop.
Save DavertMik/5615747 to your computer and use it in GitHub Desktop.
laravel test with CSS
<?php
$I = new TestGuy($scenario);
$I->wantTo('perform actions and see result');
$I->amOnPage('/posts');
$I->see('All Posts');
$I->click('Add new post');
$I->fillField('#title', 'Hello world again');
$I->fillField('Body:', 'And greetings for all');
$I->click('Submit');
$I->see('All Posts');
$I->see('Hello world');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment