@@ -53,7 +53,7 @@ test.describe( 'Edit Posts', () => {
5353 await expect ( listTable ) . toBeVisible ( ) ;
5454
5555 // Click the post title (edit) link
56- await listTable . getByRole ( 'link' , { name : `“ ${ title } ” (Edit) ` } ) . click ( ) ;
56+ await listTable . getByRole ( 'link' , { name : `${ title } ` } ) . click ( ) ;
5757
5858 // Wait for the editor iframe to load, and switch to it as the active content frame.
5959 await page
@@ -84,7 +84,7 @@ test.describe( 'Edit Posts', () => {
8484 await expect ( listTable ) . toBeVisible ( ) ;
8585
8686 // // Focus on the post title link.
87- await listTable . getByRole ( 'link' , { name : `“ ${ title } ” (Edit) ` } ) . focus ( ) ;
87+ await listTable . getByRole ( 'link' , { name : `${ title } ` } ) . focus ( ) ;
8888
8989 // Tab to the Quick Edit button and press Enter to quick edit.
9090 await pageUtils . pressKeys ( 'Tab' , { times : 2 } )
@@ -122,7 +122,7 @@ test.describe( 'Edit Posts', () => {
122122 await expect ( listTable ) . toBeVisible ( ) ;
123123
124124 // Focus on the post title link.
125- await listTable . getByRole ( 'link' , { name : `“ ${ title } ” (Edit) ` } ) . focus ( ) ;
125+ await listTable . getByRole ( 'link' , { name : `${ title } ` } ) . focus ( ) ;
126126
127127 // Tab to the Trash button and press Enter to delete the post.
128128 await pageUtils . pressKeys ( 'Tab' , { times : 3 } )
0 commit comments