From 89894e15d299608be5ac62ddb56f54e4c1342f7e Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Thu, 19 Aug 2021 14:52:35 -0700 Subject: [PATCH] docs: fix @link reference for method with alias (#577) --- .../com/microsoft/playwright/Browser.java | 18 +++++++++------- .../microsoft/playwright/BrowserContext.java | 2 +- .../com/microsoft/playwright/BrowserType.java | 9 ++++---- .../microsoft/playwright/ConsoleMessage.java | 4 ++-- .../java/com/microsoft/playwright/Page.java | 10 ++++----- .../playwright/tools/ApiGenerator.java | 21 +++++++++++++++---- 6 files changed, 40 insertions(+), 24 deletions(-) diff --git a/playwright/src/main/java/com/microsoft/playwright/Browser.java b/playwright/src/main/java/com/microsoft/playwright/Browser.java index 61283af9..cf7b6d33 100644 --- a/playwright/src/main/java/com/microsoft/playwright/Browser.java +++ b/playwright/src/main/java/com/microsoft/playwright/Browser.java @@ -61,10 +61,11 @@ public interface Browser extends AutoCloseable { */ public Boolean acceptDownloads; /** - * When using {@link Page#goto Page.goto()}, {@link Page#route Page.route()}, {@link Page#waitForURL Page.waitForURL()}, - * {@link Page#waitForRequest Page.waitForRequest()}, or {@link Page#waitForResponse Page.waitForResponse()} it takes the - * base URL in consideration by using the {@code URL()} - * constructor for building the corresponding URL. Examples: + * When using {@link Page#navigate Page.navigate()}, {@link Page#route Page.route()}, {@link Page#waitForURL + * Page.waitForURL()}, {@link Page#waitForRequest Page.waitForRequest()}, or {@link Page#waitForResponse + * Page.waitForResponse()} it takes the base URL in consideration by using the {@code URL()} constructor for building the corresponding + * URL. Examples: *