react-native-e2etest
react-native-e2etest copied to clipboard
React Native example project to execute e2e tests with Appium and Jest
Hi, Thanks for your information about appium. I want to ask you something. Lets say I have 2 screens, Login Screen and Home Screen. Login Screen will loaded first then...
When I run the test I got this error: `'E2E_DEVICE' is not recognized as an internal or external command` what can be the problem?
import wd from 'wd'; import config from '../e2e-config'; const port = 4723; const driver = wd.promiseChainRemote('localhost', port); jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000; describe('Login Test', () => { // beforeAll(async () => await...