Hi, I am working on test automation using appium, cucumber and webdriverio to test android and iOS apps. I am using the lambdatest service in my wdio.conf file and when I use the “upload” as true, I want to get the APP_ID or APP_URL and keep it in a variable after uploading the app automatically. How can I get this? Below is a part of my code from the wdio.conf file:
services: [
[
"lambdatest",
{
tunnel: false,
verbose: true,
logFile: 'lt-service.log',
app_upload: false,
app: {
app_name: appCustomID,
app_path: appPath,
enableCapability: true,
custom_id: appCustomID
}
}
]
],