13 lines
254 B
JavaScript
13 lines
254 B
JavaScript
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)
|
|
});
|