Skip to content

Commit

Permalink
chore(dotnet): improve goto name in csharp (#5917)
Browse files Browse the repository at this point in the history
  • Loading branch information
kblok committed Mar 24, 2021
1 parent 2cf4caa commit 24ee49b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/src/api/class-frame.md
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions docs/src/api/class-page.md
Expand Up @@ -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
Expand Down

0 comments on commit 24ee49b

Please sign in to comment.