chore(dotnet): improve goto name in csharp (#5917)

This commit is contained in:
Darío Kondratiuk 2021-03-24 11:31:30 -03:00 committed by GitHub
parent 2cf4caa4cf
commit 24ee49b958
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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