import { Selector } from 'testcafe'; fixture("Testing setup") .page("https://google.com"); test("google bouvet", async t => { await t .typeText("#lst-ib", "Bouvet") .wait(3000) .pressKey("enter") .wait(3000) });