I am planning to execute Android UI Automation tests on Browserstack device in cloud. In my local dev environment, The test is executed using ./gradlew connectedMockDebugAndroidTest
in my local environment. My feature files and mock json response files are kept inside assets folder. And it gets compiled and added to the apk.
How do I execute these tests on a Browserstack device using ./gradlew connectedMockDebugAndroidTest
command?
I went through their documentation here, but it says to upload test suite. Is it not possible to execute test on browserstack using connectedMockDebugAndroidTest?