We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
e2e_ios
1 parent 6f3403f commit c58db54Copy full SHA for c58db54
example/e2e/reportBug.e2e.js
@@ -3,14 +3,15 @@ import mockData from './utils/mockData';
3
4
beforeEach(async () => {
5
await device.launchApp();
6
-});
7
-
8
-beforeEach(async () => {
9
await device.reloadReactNative();
+ await device.setURLBlacklist(['https://api.instabug.com']);
10
});
11
12
it('reports a bug', async () => {
13
- await getElement('floatingButton').tap();
+ const floatingButton = getElement('floatingButton');
+ await waitFor(floatingButton).toBeVisible().withTimeout(30000);
+ await floatingButton.tap();
14
+
15
await getElement('reportBugMenuItem').tap();
16
17
await getElement('emailField').typeText(mockData.email);
0 commit comments