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.
1 parent baedab6 commit edbe16eCopy full SHA for edbe16e
1 file changed
FabricExample/e2e/issuesTests/Test528.e2e.ts
@@ -7,6 +7,16 @@ describeIfiOS('Test528', () => {
7
await device.reloadReactNative();
8
});
9
10
+ it('Test528 should exist', async () => {
11
+ await waitFor(element(by.id('root-screen-tests-Test528')))
12
+ .toBeVisible()
13
+ .whileElement(by.id('root-screen-examples-scrollview'))
14
+ .scroll(600, 'down', NaN, 0.85);
15
+
16
+ await expect(element(by.id('root-screen-tests-Test528'))).toBeVisible();
17
+ await element(by.id('root-screen-tests-Test528')).tap();
18
+ });
19
20
it('headerRight button should be visible after orientation change', async () => {
21
await expect(element(by.text('Custom Button'))).toBeVisible(100);
22
await device.setOrientation('landscape');
0 commit comments