Skip to content

Commit 78a2c48

Browse files
committed
updated readme
1 parent 453dec8 commit 78a2c48

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,34 @@ exports.config = {
3434
};
3535
```
3636

37+
### To get test error remarks on automation dashboard
38+
To get test error remarks on automation dashboard, simply add `ltErrorRemark: true` in your `wdio.conf.js`.
39+
40+
41+
### To upload app from local or url
42+
Upload `android` or `ios` apps from local or hosted app url by adding this required configuration in your `wdio.conf.js`. To use the uploaded app for testing along in the same run set `enableCapability = true` , this will set the app url value in the capabilities.
43+
44+
```js
45+
// wdio.conf.js
46+
services: [
47+
[
48+
"lambdatest",
49+
{
50+
tunnel: true,
51+
app_upload: true,
52+
app:{
53+
app_name : "xyz", //provide your desired app name
54+
app_path : "/path/to/your/app/file", //provide the local app location
55+
// or
56+
app_url : "https://example.test_android.apk", //provide the url where your app is horsted or stored
57+
custom_id : "12345", //provide your desired custom id
58+
enableCapability : true
59+
}
60+
}
61+
]
62+
]
63+
```
64+
3765
## Options
3866

3967
In order to authorize to the LambdaTest service your config needs to contain a [`user`](https://webdriver.io/docs/options.html#user) and [`key`](https://webdriver.io/docs/options.html#key) option.

0 commit comments

Comments
 (0)