Is there a way to wait until element is clickable in Testcafe. For example in WebdriverIO we can use this
const depInput = await $('.--departure');
await browser.waitUntil(async () => depInput.isClickable());
await depInput.click();
or use method waitForClickable(). I cannot find the way to do the same in Testcafe.