18 lines
368 B
PHP
18 lines
368 B
PHP
<?php
|
|
|
|
namespace MailPoet\Test\Acceptance;
|
|
|
|
class SubscribersListingCest {
|
|
|
|
function subscribersListing(\AcceptanceTester $I) {
|
|
$I->wantTo('Open subscribers listings page');
|
|
|
|
$I->login();
|
|
$I->amOnMailpoetPage('Subscribers');
|
|
$I->fillField('#search_input', 'wp@example.com');
|
|
$I->click('Search');
|
|
$I->waitForText('wp@example.com', 10);
|
|
}
|
|
|
|
}
|