Newer
Older
// import { Selector } from "testcafe"
fixture`Getting Started`.page`http://devexpress.github.io/testcafe/example`
test("My first test", async (t) => {
await t.typeText("#developer-name", "John Smith").click("#submit-button")
})