79 lines
2.8 KiB
PHP
79 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace MailPoet\Test\Acceptance;
|
|
|
|
class NewsletterCreationCest {
|
|
|
|
public function createPostNotification(\AcceptanceTester $i) {
|
|
$i->wantTo('Create and configure post notification email');
|
|
|
|
$newsletterTitle = 'Post Notification ' . \MailPoet\Util\Security::generateRandomString();
|
|
$segmentName = $i->createListWithSubscriber();
|
|
|
|
$i->login();
|
|
$i->amOnMailpoetPage('Emails');
|
|
|
|
// step 1 - select notification type
|
|
$i->click('[data-automation-id="create_notification"]');
|
|
|
|
// step 2 - configure schedule
|
|
$i->waitForText('Latest Post Notifications');
|
|
$i->selectOption('select[name=intervalType]', 'immediately');
|
|
$i->click('Next');
|
|
|
|
// step 3 - select template
|
|
$postNotificationTemplate = '[data-automation-id="select_template_2"]';
|
|
$i->waitForElement($postNotificationTemplate);
|
|
$i->see('Post Notifications', ['css' => 'a.current']);
|
|
$i->click($postNotificationTemplate);
|
|
|
|
// step 4 - design newsletter (update subject)
|
|
$titleElement = '[data-automation-id="newsletter_title"]';
|
|
$i->waitForElement($titleElement);
|
|
$i->fillField($titleElement, $newsletterTitle);
|
|
$i->click('Next');
|
|
|
|
// step 5 - activate
|
|
$searchFieldElement = 'input.select2-search__field';
|
|
$i->waitForElement($searchFieldElement);
|
|
$i->see('Select a frequency');
|
|
$newsletterListingElement = '[data-automation-id="listing_item_' . basename($i->getCurrentUrl()) . '"]';
|
|
$i->selectOptionInSelect2($segmentName);
|
|
$i->click('Activate');
|
|
$i->waitForElement($newsletterListingElement);
|
|
$i->see($newsletterTitle, $newsletterListingElement);
|
|
$i->see("Send immediately if there's new content to " . $segmentName . ".", $newsletterListingElement);
|
|
}
|
|
|
|
public function createStandardNewsletter(\AcceptanceTester $i) {
|
|
$i->wantTo('Create and configure standard newsletter');
|
|
|
|
$newsletterTitle = 'Testing Newsletter ' . \MailPoet\Util\Security::generateRandomString();
|
|
$segmentName = $i->createListWithSubscriber();
|
|
|
|
$i->login();
|
|
$i->amOnMailpoetPage('Emails');
|
|
|
|
// step 1 - select notification type
|
|
$i->click('[data-automation-id="create_standard"]');
|
|
|
|
// step 2 - select template
|
|
$standardTemplate = '[data-automation-id="select_template_0"]';
|
|
$i->waitForElement($standardTemplate);
|
|
$i->see('Newsletters', ['css' => 'a.current']);
|
|
$i->click($standardTemplate);
|
|
|
|
// step 3 - design newsletter (update subject)
|
|
$titleElement = '[data-automation-id="newsletter_title"]';
|
|
$i->waitForElement($titleElement);
|
|
$i->fillField($titleElement, $newsletterTitle);
|
|
$i->click('Next');
|
|
|
|
// step 4 - Choose list and send
|
|
$sendFormElement = '[data-automation-id="newsletter_send_form"]';
|
|
$i->waitForElement($sendFormElement);
|
|
$i->selectOptionInSelect2($segmentName);
|
|
$i->click('Send');
|
|
}
|
|
}
|