docs: fix toHaveValues param type for java and .net (#14803)

This commit is contained in:
Yury Semikhatsky 2022-06-10 16:34:56 -07:00 committed by GitHub
parent f486760229
commit e94ec8a85f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1272,9 +1272,16 @@ await Expect(locator).ToHaveValuesAsync(new Regex[] { new Regex("R"), new Regex(
```
### param: LocatorAssertions.toHaveValues.values
* langs: python, js
- `values` <[Array]<[string]|[RegExp]>>
Expected options currently selected.
### param: LocatorAssertions.toHaveValues.values
* langs: java, csharp
- `values` <[Array]<[string]>|[Array]<[RegExp]>>
Expected options currently selected.
### option: LocatorAssertions.toHaveValues.timeout = %%-js-assertions-timeout-%%
### option: LocatorAssertions.toHaveValues.timeout = %%-csharp-java-python-assertions-timeout-%%