wantTo('Move a newsletter to trash'); $newsletterName = 'Trash Newsletter'; $newsletter = new Newsletter(); $newsletter->withSubject($newsletterName)->create(); $newsletter->withSubject($newsletterName . '2')->create(); $newsletter->withSubject($newsletterName . '3')->create(); $i->login(); $i->amOnMailpoetPage('Emails'); $i->waitForText($newsletterName); $i->clickItemRowActionByItemName($newsletterName, 'Move to trash'); $i->waitForText('1 email was moved to the trash.'); // click to select all newsletters $i->click('[data-automation-id="select_all"]'); $i->click('Move to trash'); $i->waitForText('2 emails were moved to the trash.'); $i->waitForElement('[data-automation-id="filters_trash"]'); $i->click('[data-automation-id="filters_trash"]'); $i->waitForText($newsletterName); } public function restoreNewsletterFromTrash(\AcceptanceTester $i) { $i->wantTo('Restore a newsletter from trash'); $newsletterName = 'Restore Trashed Newsletter'; $newsletter = new Newsletter(); $newsletter->withSubject($newsletterName)->withDeleted()->create(); $newsletter->withSubject($newsletterName . '2')->withDeleted()->create(); $newsletter->withSubject($newsletterName . '3')->withDeleted()->create(); $i->login(); $i->amOnMailpoetPage('Emails'); $i->waitForElement('[data-automation-id="filters_trash"]'); $i->click('[data-automation-id="filters_trash"]'); $i->waitForText($newsletterName); $i->clickItemRowActionByItemName($newsletterName, 'Restore'); $i->waitForText('1 email has been restored from the Trash.'); // click to select all newsletters $i->click('[data-automation-id="select_all"]'); $i->click('Restore'); $i->waitForText('2 emails have been restored from the Trash.'); $i->waitForElement('[data-automation-id="filters_all"]'); $i->click('[data-automation-id="filters_all"]'); $i->waitForText($newsletterName); } public function deleteNewsletterPermanently(\AcceptanceTester $i) { $i->wantTo('Forever delete a newsletter'); $newsletterName = 'Goodbye Forever Newsletter'; $newsletter = new Newsletter(); $newsletter->withSubject($newsletterName)->withDeleted()->create(); $newsletter->withSubject($newsletterName . '2')->withDeleted()->create(); $newsletter->withSubject($newsletterName . '3')->withDeleted()->create(); $newsletter = new Newsletter(); $newsletter->withSubject($newsletterName . '4')->create(); $i->login(); $i->amOnMailpoetPage('Emails'); $i->waitForElement('[data-automation-id="filters_trash"]'); $i->click('[data-automation-id="filters_trash"]'); $i->waitForText($newsletterName); $i->clickItemRowActionByItemName($newsletterName, 'Delete Permanently'); $i->waitForText('1 email was permanently deleted.'); $i->waitForElementNotVisible($newsletterName); $i->waitForText($newsletterName . '2'); $i->waitForText($newsletterName . '3'); // click to select all newsletters $i->click('[data-automation-id="select_all"]'); $i->click('Delete Permanently'); $i->waitForText('2 emails were permanently deleted.'); $i->waitForElement('[data-automation-id="filters_all"]'); $i->waitForText($newsletterName . '4'); } public function emptyTrash(\AcceptanceTester $i) { $i->wantTo('Empty a trash on Newsletters page'); $newsletterName = 'Goodbye Forever Newsletter'; $newsletter = new Newsletter(); $newsletter->withSubject($newsletterName)->withDeleted()->create(); $newsletter->withSubject($newsletterName . '2')->withDeleted()->create(); $newsletter = new Newsletter(); $newsletter->withSubject($newsletterName . '3')->create(); $i->login(); $i->amOnMailpoetPage('Emails'); $i->waitForElement('[data-automation-id="filters_trash"]'); $i->click('[data-automation-id="filters_trash"]'); $i->waitForText($newsletterName); $i->click('[data-automation-id="empty_trash"]'); $i->waitForText('2 emails were permanently deleted.'); $i->waitForElementNotVisible($newsletterName); $i->click('[data-automation-id="filters_all"]'); $i->waitForText($newsletterName . '3'); } public function selectAllAvailableNewslettersAndDelete(\AcceptanceTester $i) { $i->wantTo('Select all available newsletters and proceed with deletion'); $newsletterName = 'Sample Newsletter'; $newsletter = new Newsletter(); for ($itemCount = 1; $itemCount <= 22; $itemCount++) { $newsletter->withSubject($newsletterName . $itemCount)->withSentStatus()->create(); } $i->login(); $i->amOnMailpoetPage('Emails'); $i->waitForText($newsletterName); // click to select all newsletters $i->click('[data-automation-id="select_all"]'); $i->waitForText('All emails on this page are selected.'); $i->click('Select all emails on all pages'); $i->waitForText('All 22 emails are selected.'); $i->click('Move to trash'); $i->waitForText('22 emails were moved to the trash.'); $i->waitForElement('[data-automation-id="filters_trash"]'); $i->click('[data-automation-id="filters_trash"]'); $i->waitForText($newsletterName); // click to select all newsletters $i->click('[data-automation-id="select_all"]'); $i->waitForText('All emails on this page are selected.'); $i->click('Select all emails on all pages'); $i->waitForText('All 22 emails are selected.'); $i->click('Delete Permanently'); $i->waitForText('22 emails were permanently deleted.'); } }