diff --git a/exercises/01.e2e/01.problem.playwright/tests/e2e/search.test.ts b/exercises/01.e2e/01.problem.playwright/tests/e2e/search.test.ts index 25493dcc..029dd992 100644 --- a/exercises/01.e2e/01.problem.playwright/tests/e2e/search.test.ts +++ b/exercises/01.e2e/01.problem.playwright/tests/e2e/search.test.ts @@ -2,7 +2,7 @@ // 🐨 create your test here, you'll need the page fixture. // 🐨 go to the home page (💰 "/") -// 🐨 fill in the search box with "kody" (💰 it's implicit role is "searchbox" and it's named "search") +// 🐨 fill in the search box with "kody" (💰 its implicit role is "searchbox" and it's named "search") // 🐨 click the search button (💰 it's named "search") // 🐨 wait for the URL to be "/users?search=kody" (💰 page.waitForURL) // 🐨 assert that the text "Epic Notes Users" is visible (💰 don't forget to add "await")