From 7f9d390cee5778703bb2da4475d273361a0e4fa9 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Fri, 10 Sep 2021 13:17:20 +0200 Subject: [PATCH] docs(protractor): fixed invalid link reference --- docs/src/protractor-js.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/protractor-js.md b/docs/src/protractor-js.md index 6bfcbacaea..6dc4164089 100644 --- a/docs/src/protractor-js.md +++ b/docs/src/protractor-js.md @@ -79,7 +79,7 @@ Migration highlights (see inline comments in the Playwright Test code snippet): 1. Each Playwright Test file has explicit import of the `test` and `expect` functions 2. Test function is marked with `async` -3. Playwright Test is given a `page` as one of its parameters. This is one of the many [useful fixtures](./test-api/class-fixtures) in Playwright Test. +3. Playwright Test is given a `page` as one of its parameters. This is one of the many [useful fixtures](./api/class-fixtures) in Playwright Test. 4. Almost all Playwright calls are prefixed with `await` 5. Locator creation with [`method: Page.locator`] is one of the few methods that is sync.