Skip to content

Commit

Permalink
docs(dotnet): adds option parameters for csharp on element handle (#5823
Browse files Browse the repository at this point in the history
)
  • Loading branch information
avodovnik committed Mar 17, 2021
1 parent ae460f0 commit c550008
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/src/api/csharp.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-%%
18 changes: 18 additions & 0 deletions docs/src/api/params.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-%%
Expand Down

0 comments on commit c550008

Please sign in to comment.