wordpress/tests/e2e/specs/edit-posts.test.js
Pascal Birchler 5a838d1bb7 Build/Test Tools: Migrate Puppeteer tests to Playwright.
As per the migration plan shared last year, this migrates all browser-based tests in WordPress core to use Playwright.
This includes end-to-end, performance, and visual regression tests.

Props swissspidy, mamaduka, kevin940726, bartkalisz, desrosj, adamsilverstein.
Fixes #59517.

git-svn-id: https://develop.svn.wordpress.org/trunk@56926 602fd350-edb4-49c9-b593-d223f7449a82
2023-10-13 08:11:41 +00:00

136 lines
4.1 KiB
JavaScript

/**
* WordPress dependencies
*/
import { test, expect } from '@wordpress/e2e-test-utils-playwright';
test.describe( 'Edit Posts', () => {
test.beforeEach( async ( { requestUtils }) => {
await requestUtils.deleteAllPosts();
} );
test( 'displays a message in the posts table when no posts are present',async ( {
admin,
page,
} ) => {
await admin.visitAdminPage( '/edit.php' );
await expect(
page.getByRole( 'cell', { name: 'No posts found.' } )
).toBeVisible();
} );
test( 'shows a single post after one is published with the correct title',async ( {
admin,
editor,
page,
} ) => {
const title = 'Test Title';
await admin.createNewPost( { title } );
await editor.publishPost();
await admin.visitAdminPage( '/edit.php' );
const listTable = page.getByRole( 'table', { name: 'Table ordered by' } );
await expect( listTable ).toBeVisible();
// Expect there to be one row in the post list.
const posts = listTable.locator( '.row-title' );
await expect( posts ).toHaveCount( 1 );
// Expect the title of the post to be correct.
expect( posts.first() ).toHaveText( title );
} );
test( 'allows an existing post to be edited using the Edit button', async ( {
admin,
editor,
page,
} ) => {
const title = 'Test Title';
await admin.createNewPost( { title } );
await editor.publishPost();
await admin.visitAdminPage( '/edit.php' );
const listTable = page.getByRole( 'table', { name: 'Table ordered by' } );
await expect( listTable ).toBeVisible();
// Click the post title (edit) link
await listTable.getByRole( 'link', { name: `${ title }” (Edit)` } ).click();
// Wait for the editor iframe to load, and switch to it as the active content frame.
await page
.frameLocator( '[name=editor-canvas]' )
.locator( 'body > *' )
.first()
.waitFor();
const editorPostTitle = editor.canvas.getByRole( 'textbox', { name: 'Add title' } );
// Expect title field to be in the editor with correct title shown.
await expect( editorPostTitle ).toBeVisible();
await expect( editorPostTitle ).toHaveText( title );
} );
test( 'allows an existing post to be quick edited using the Quick Edit button', async ( {
admin,
editor,
page,
pageUtils
} ) => {
const title = 'Test Title';
await admin.createNewPost( { title } );
await editor.publishPost();
await admin.visitAdminPage( '/edit.php' );
const listTable = page.getByRole( 'table', { name: 'Table ordered by' } );
await expect( listTable ).toBeVisible();
// // Focus on the post title link.
await listTable.getByRole( 'link', { name: `${ title }” (Edit)` } ).focus();
// Tab to the Quick Edit button and press Enter to quick edit.
await pageUtils.pressKeys( 'Tab', { times: 2 } )
await page.keyboard.press( 'Enter' );
// Type in the currently focused (title) field to modify the title, testing that focus is moved to the input.
await page.keyboard.type( ' Edited' );
// Update the post.
await page.getByRole( 'button', { name: 'Update' } ).click();
// Wait for the quick edit button to reappear.
await expect( page.getByRole( 'button', { name: 'Quick Edit' } ) ).toBeVisible();
// Expect there to be one row in the post list.
const posts = listTable.locator( '.row-title' );
await expect( posts ).toHaveCount( 1 );
// Expect the title of the post to be correct.
expect( posts.first() ).toHaveText( `${ title } Edited` );
} );
test( 'allows an existing post to be deleted using the Trash button', async ( {
admin,
editor,
page,
pageUtils
} ) => {
const title = 'Test Title';
await admin.createNewPost( { title } );
await editor.publishPost();
await admin.visitAdminPage( '/edit.php' );
const listTable = page.getByRole( 'table', { name: 'Table ordered by' } );
await expect( listTable ).toBeVisible();
// Focus on the post title link.
await listTable.getByRole( 'link', { name: `${ title }” (Edit)` } ).focus();
// Tab to the Trash button and press Enter to delete the post.
await pageUtils.pressKeys( 'Tab', { times: 3 } )
await page.keyboard.press( 'Enter' );
await expect(
page.getByRole( 'cell', { name: 'No posts found.' } )
).toBeVisible();
} );
} );