Detox — gray-box testing framework for React Native.
1describe("Login", () => {2 beforeAll(async () => {3 await device.launchApp();4 });56 it("should login successfully", async () => {7 await element(by.id("email-input")).typeText("user@test.com");8 await element(by.id("password-input")).typeText("password");9 await element(by.id("login-button")).tap();10 await expect(element(by.id("home-screen"))).toBeVisible();11 });12});
Setup:
Alternatives: