How can we test our local host application on LambdaTest? Currently, I am using WebdriverIO and on my local the tests are running fine however on LambdaTest the applicatoin doesn’t open up.
Hey Tim!
It seems that you are not using the LambdaTest tunnel when running the tests on LambdaTest. Since, it is a locally hosted website it won’t be directly accessible on LambdaTest and you will have to use the LambdaTest tunnel.
Since, you are using WebdriverIO, you can use our Webdriver IO LambdaTest service and mark tunnel as true there which will automatically connect to tunnel.
services: [
[
'lambdatest',
{
tunnel: true
}
]
],