testcafe-workshop/tests/setup.test.js
2018-10-23 11:41:26 +02:00

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)
});