I want to write an E2E test for a service using selenium webdriverio. and caching in backend is causing trouble.
There's a request in backend that cache data for a certain amount of time. this leads into the test being false negative cause it's running faster than that certain cache time. Currently I am using browser.pause()
How can i make this test more stable without await browser.pause(XXXX)