From 8581e3e950714202029846d36021a07c5320c3bc Mon Sep 17 00:00:00 2001 From: Pavel Feldman Date: Thu, 28 Jan 2021 15:15:29 -0800 Subject: [PATCH] fix(docs): a couple of broken links (#5211) --- docs/src/test-runners-python.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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