PHP code example of polevaultweb / codeception-helpscout
1. Go to this page and download the library: Download polevaultweb/codeception-helpscout library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
polevaultweb / codeception-helpscout example snippets
$I = new AcceptanceTester( $scenario );
$I->fetchEmails( 12345 );
$I->openNextUnreadEmail();
$I->seeInOpenedEmailSubject( 'Thank you' );
$I->seeInOpenedEmailSender( '[email protected]' );
$I->seeInOpenedEmailBody( 'Hey, thanks for the great product' );