How do I upload a native app while doing app automation testing from a cloud storage 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_url : "https://example.test_android.apk", //provide the url where your app is horsted or stored
custom_id : "12345", //provide your desired custom id
enableCapability : true
}
}
]
]