If I want to run my test on a real mobile device, on safari browser, can you provide the config I have to use in the LambdaTest-config?

If I want to run my test on a real mobile device, e.g. iPhone 6 on iOS 14 on safari browser, can you provide the config I have to use in the LambdaTest-config within browsers?

Hello Toby-steed,

As of now, Cypress doesn’t support testing on emulators, simulators nor real devices. However, you can perform your testing on a different resolution by defining viewports.

cy.viewport(550, 750) // Set viewport to 550px x 750px cy.viewport('iphone-6') // Set viewport to 375px x 667px

For your reference with sample syntax, please click here: