Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add doc for languages #12

Merged
merged 2 commits into from
Sep 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,22 @@ If this option is not specified, the default device configured for the app in Wa
Type: `string` <br/>
Default: `undefined`

### Language

To set the language for a session you can use the `appium:language` capability.
This key allows you to specify the language in which the app will run during the session.

```ts
{
"capabilities": [{ "appium:language": "fr" }]
}
```

Please not that each device supports a different set of languages. To determine which languages a specific device supports, you can make a call to the []`GET /devices` endpoint](https://docs.waldo.com/reference/getdevices) on `https://core.waldo.com` and check `supportedLanguages`.

Type: `string` <br/>
Default: `en`

## Additional commands

In addition to configuring Waldo as a remote WebDriver endpoint this package also adds the following commands on the
Expand Down