diff --git a/docs/src/test-runners-python.md b/docs/src/test-runners-python.md index dde9666b9b..5311c08394 100644 --- a/docs/src/test-runners-python.md +++ b/docs/src/test-runners-python.md @@ -72,8 +72,8 @@ def test_my_app_is_working(fixture_name): **Customizing fixture options**: For `browser` and `context` fixtures, use the the following fixtures to define custom launch options. -- `browser_type_launch_args`: Override launch arguments for [`browserType.launch()`](https://playwright.dev/#path=docs%2Fapi.md&q=browsertypelaunchoptions). It should return a Dict. -- `browser_context_args`: Override the options for [`browser.newContext()`](https://playwright.dev/#path=docs%2Fapi.md&q=browsernewcontextoptions). It should return a Dict. +- `browser_type_launch_args`: Override launch arguments for [`method: BrowserType.launch`]. It should return a Dict. +- `browser_context_args`: Override the options for [`method: Browser.newContext`]. It should return a Dict. ## Examples