docs(dotnet): fix EvalueHandleAsync typo (#12920)
This commit is contained in:
parent
d8ab76bf64
commit
4aa7677f98
|
|
@ -646,7 +646,7 @@ a_handle = page.evaluate_handle("document") # handle for the "document"
|
||||||
```
|
```
|
||||||
|
|
||||||
```csharp
|
```csharp
|
||||||
var docHandle = await frame.EvalueHandleAsync("document"); // Handle for the `document`
|
var docHandle = await frame.EvaluateHandleAsync("document"); // Handle for the `document`
|
||||||
```
|
```
|
||||||
|
|
||||||
[JSHandle] instances can be passed as an argument to the [`method: Frame.evaluateHandle`]:
|
[JSHandle] instances can be passed as an argument to the [`method: Frame.evaluateHandle`]:
|
||||||
|
|
|
||||||
|
|
@ -1372,7 +1372,7 @@ a_handle = page.evaluate_handle("document") # handle for the "document"
|
||||||
```
|
```
|
||||||
|
|
||||||
```csharp
|
```csharp
|
||||||
var docHandle = await page.EvalueHandleAsync("document"); // Handle for the `document`
|
var docHandle = await page.EvaluateHandleAsync("document"); // Handle for the `document`
|
||||||
```
|
```
|
||||||
|
|
||||||
[JSHandle] instances can be passed as an argument to the [`method: Page.evaluateHandle`]:
|
[JSHandle] instances can be passed as an argument to the [`method: Page.evaluateHandle`]:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue