From 24ee49b958e410ed995f82f5c990548e6bf97276 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Kondratiuk?= Date: Wed, 24 Mar 2021 11:31:30 -0300 Subject: [PATCH] chore(dotnet): improve goto name in csharp (#5917) --- docs/src/api/class-frame.md | 3 ++- docs/src/api/class-page.md | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/src/api/class-frame.md b/docs/src/api/class-frame.md index b5caf2074e..92378fcece 100644 --- a/docs/src/api/class-frame.md +++ b/docs/src/api/class-frame.md @@ -677,6 +677,7 @@ Attribute name to get the value for. ## async method: Frame.goto * langs: - alias-java: navigate + - alias-csharp: GoToAsync - returns: <[null]|[Response]> Returns the main resource response. In case of multiple redirects, the navigation will resolve with the response of the @@ -1047,7 +1048,7 @@ await frame.type('#mytextarea', 'World', {delay: 100}); // Types slower, like a // Types instantly frame.type("#mytextarea", "Hello"); // Types slower, like a user -frame.type("#mytextarea", "World", new Frame.TypeOptions().setDelay(100)); +frame.type("#mytextarea", "World", new Frame.TypeOptions().setDelay(100)); ``` ```python async diff --git a/docs/src/api/class-page.md b/docs/src/api/class-page.md index 43779df651..fc2303b717 100644 --- a/docs/src/api/class-page.md +++ b/docs/src/api/class-page.md @@ -1585,6 +1585,7 @@ Navigate to the next page in history. ## async method: Page.goto * langs: - alias-java: navigate + - alias-csharp: GoToAsync - returns: <[null]|[Response]> Returns the main resource response. In case of multiple redirects, the navigation will resolve with the response of the