mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
chore(dotnet): improve goto name in csharp (#5917)
This commit is contained in:
parent
2cf4caa4cf
commit
24ee49b958
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user