Skip to content

Instantly share code, notes, and snippets.

@JohnDeeBDD
Last active November 1, 2017 21:04
Show Gist options
  • Save JohnDeeBDD/620130132fd423462fe061cd16bdfc9c to your computer and use it in GitHub Desktop.
Save JohnDeeBDD/620130132fd423462fe061cd16bdfc9c to your computer and use it in GitHub Desktop.
<?php
/**
* ARRANGE / GIVEN
*/
$I = /*am a */ new AcceptanceTester($scenario);
$I->loginAsAdmin();
$I->amOnPage("/wp-admin/post-new.php");
$I->fillField('#content', "[first-testable-shortcode]");
$I->click('#publish');
/**
* ACT / WHEN
*/
$I->click("View Post");
/**
* ASSERT / THEN
*/
$I->see('Hello World!');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment