We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63e03b1 commit 5d2814bCopy full SHA for 5d2814b
1 file changed
tests/e2e/sequential/todo.spec.js
@@ -68,7 +68,9 @@ function todoTests( testContext = test ) {
68
const deleteItem = page.locator( SELECTORS.TODO_ITEM );
69
await deleteItem.hover();
70
await deleteItem.waitFor( { state: 'visible' } );
71
- await deleteItem.locator( '.trash' ).click();
+ await deleteItem
72
+ .locator( '.prpl-suggested-task-actions-wrapper .trash' )
73
+ .click();
74
await page.waitForTimeout( 1500 );
75
76
// Verify the todo was deleted
0 commit comments