How do I upload a native app while doing app automation testing on WebdriverIO using wdio-lambda-service?
Hey Macy
To answer your question, you can refer to the below code to pass the app using wdio-lambda-service
:
// wdio.conf.js
services: [
[
"lambdatest",
{
tunnel: true,
app_upload: true,
app:{
app_name : "xyz", //provide your desired app name
app_path : "/path/to/your/app/file", //provide the local app location
custom_id : "12345", //provide your desired custom id
enableCapability : true
}
}
]
]