-
Notifications
You must be signed in to change notification settings - Fork 0
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
Conversation
b94309b
to
a29a68a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The example should show the wdio configuration syntax
Readme.md
Outdated
} | ||
``` | ||
|
||
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 following endpoint `GET /devices` on `https://core.waldo.com` and check `supportedLanguages`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 following endpoint `GET /devices` on `https://core.waldo.com` and check `supportedLanguages`. | |
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`. |
Readme.md
Outdated
|
||
```ts | ||
{ | ||
"capabilities": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Capabilities are never a key in a dictionary with the object directly under in wdio conf, they are always an array:
capabilities: [
{ "appium:language": "fr" },
]
No description provided.