You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,34 @@ exports.config = {
34
34
};
35
35
```
36
36
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
+
37
65
## Options
38
66
39
67
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