In my app I determine which database schema and server address i wanna use in app (configurations are inside system settings of the device). On app startup i load some data from DB.
App makes queries to/from DB so I don't want to mistakenly run tests on wrong DB.
Is there any solution to change these settings before UI tests (prepare correct app settings)?
Thanks!