You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If you believe the issue is still relevant, please test on the latest Detox and report back.
Thank you for your contributions!
For more information on bots in this repository, read this discussion.
What happened?
Not able to open the app when we are detox test --configuration android.att.debug
What was the expected behaviour?
When the app is successfully install then need to open app automatically and run testcase
Was it tested on latest Detox?
Did your test throw out a timeout?
Help us reproduce this issue!
No response
In what environment did this happen?
Detox version: 20.11.1
React Native version: 0.67.4
Has Fabric (React Native's new rendering system) enabled: (yes/no) no
Node version: 16.10.0
Device model: Redmi Note 12 5G
Android version: 12
Test-runner (select one): jest
Detox logs
Detox logs
Device logs
Device logs
More data, please!
Below is the test case
import { device, expect, element, by } from "detox"
import { contextArgs } from "react-native-detox-context"
describe("Example", () => {
beforeAll(async () => {
const args = contextArgs()
await device.launchApp({
launchArgs: args,
})
})
beforeEach(async () => {
await device.reloadReactNative()
})
it("should show hello screen after tap", async () => {
// await expect(element(by.id("menuEquipment"))).toBeVisible() // the view is visible
await waitFor(element(by.id("rowViewID"))).toBeVisible().withTimeout(50000)
await element(by.id('menuEquipment')).longPress(100);
})
})
The text was updated successfully, but these errors were encountered: