diff --git a/docs/src/accessibility-testing-java.md b/docs/src/accessibility-testing-java.md index 83bcaa5482..15bb998481 100644 --- a/docs/src/accessibility-testing-java.md +++ b/docs/src/accessibility-testing-java.md @@ -239,4 +239,4 @@ public class HomepageTests extends AxeTestFixtures { } ``` -See experimental [JUnit integration](./junit.md) to automatically initialize [Playwright] objects and more. +See experimental [JUnit integration](./junit.md) to automatically initialize Playwright objects and more. diff --git a/docs/src/api-testing-java.md b/docs/src/api-testing-java.md index ed22220a9a..41265776a5 100644 --- a/docs/src/api-testing-java.md +++ b/docs/src/api-testing-java.md @@ -375,7 +375,7 @@ public class TestGitHubAPI { } ``` -See experimental [JUnit integration](./junit.md) to automatically initialize [Playwright] objects and more, thanks to fixtures. +See experimental [JUnit integration](./junit.md) to automatically initialize Playwright objects and more. ## Prepare server state via API calls diff --git a/docs/src/junit-java.md b/docs/src/junit-java.md index c92e7f011e..6329e030c5 100644 --- a/docs/src/junit-java.md +++ b/docs/src/junit-java.md @@ -77,7 +77,7 @@ Here is a list of the pre-defined fixtures: |page |[Page] |Isolated page for this test run.| |browserContext|[BrowserContext] |Isolated context for this test run. The `page` fixture belongs to this context as well.| |browser |[Browser] |Browsers are shared across tests to optimize resources.| -|playwright |[Playwright] |Playwright instance is shared between tests.| +|playwright |[Playwright] |Playwright instance is shared between tests running on the same thread.| |request |[APIRequestContext]|Isolated APIRequestContext for this test run. Learn how to do [API testing](./api-testing).| ## Customizing options diff --git a/docs/src/running-tests-java.md b/docs/src/running-tests-java.md index 1d9d9ad141..69943f5470 100644 --- a/docs/src/running-tests-java.md +++ b/docs/src/running-tests-java.md @@ -83,7 +83,7 @@ public class TestExample { See [here](./test-runners.md) for further details on how to run tests in parallel, etc. -See experimental [JUnit integration](./junit.md) to automatically initialize [Playwright] objects and more, thanks to fixtures. +See experimental [JUnit integration](./junit.md) to automatically initialize Playwright objects and more. ## What's Next diff --git a/docs/src/test-runners-java.md b/docs/src/test-runners-java.md index cf74d0bd25..d29da2e8ba 100644 --- a/docs/src/test-runners-java.md +++ b/docs/src/test-runners-java.md @@ -87,7 +87,7 @@ public class TestExample { } ``` -See experimental [JUnit integration](./junit.md) to automatically initialize [Playwright] objects and more, thanks to fixtures. +See experimental [JUnit integration](./junit.md) to automatically initialize Playwright objects and more. ### Running Tests in Parallel