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
It would be nice to have a matcher/expect statement for the app being in background. For example, if I want to check that pressing on a button sends the user to the settings, I would be able to do
it('Should send the user to the settings',async()=>{awaitelement(by.id('settingsButton')).tap();awaitexpect(element(by.id('CurrentScreen'))).toBeNotVisible();});
The text was updated successfully, but these errors were encountered:
Description
It would be nice to have a matcher/expect statement for the app being in background. For example, if I want to check that pressing on a button sends the user to the settings, I would be able to do
The text was updated successfully, but these errors were encountered: