Workaround for drawer issue on Android

This commit is contained in:
Diego Mello 2023-02-23 11:37:20 -03:00
parent fa6057e070
commit 6528bea017
1 changed files with 10 additions and 3 deletions

View File

@ -221,9 +221,16 @@ const checkServer = async (server: string) => {
.toBeVisible()
.withTimeout(10000);
await element(by.id('sidebar-close-drawer')).tap();
if (device.getPlatform() === 'ios') {
await waitFor(element(by.id('sidebar-close-drawer')))
.not.toBeVisible()
.withTimeout(10000);
} else {
// toBeVisible is not working on Android
// It is always visible, even when it's not
await sleep(2000);
}
};
// Useful to get rid of `Too many requests` alert on register