docs(dotnet): adds option parameters for csharp on element handle (#5823)

This commit is contained in:
Anže Vodovnik 2021-03-17 18:28:40 +01:00 committed by GitHub
parent ae460f01fc
commit c55000812b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 0 deletions

View File

@ -14,3 +14,6 @@ The options that control custom behaviour when parsing the JSON.
- returns: <[System.Net.HttpStatusCode]>
Gets the [System.Net.HttpStatusCode] code of the response.
### param: ElementHandle.selectOption.values = %%-csharp-select-options-values-%%
### param: ElementHandle.setInputFiles.files = %%-csharp-input-files-%%

View File

@ -519,6 +519,24 @@ The default value can be changed by using the [`method: BrowserContext.setDefaul
Maximum time in milliseconds, defaults to 30 seconds, pass `0` to disable timeout. The default value can be changed by
using the [`method: AndroidDevice.setDefaultTimeout`] method.
## csharp-select-options-values
* langs: csharp
- `values` <[Array]<[Object]>>
- `value` <[string]> Matches by `option.value`. Optional.
- `label` <[string]> Matches by `option.label`. Optional.
- `index` <[int]> Matches by the index. Optional.
Options to select. If the `<select>` has the `multiple` attribute, all matching options are selected, otherwise only the
first option matching one of the passed options is selected. String values are equivalent to `{value:'string'}`. Option
is considered matching if all specified properties match.
## csharp-input-files
* langs: csharp
- `files` <[Array]<[Object]>>
- `name` <[string]> File name
- `mimeType` <[string]> File type
- `buffer` <[Buffer]> File content
## shared-context-params-list
- %%-context-option-acceptdownloads-%%
- %%-context-option-ignorehttpserrors-%%