How do I type a character in the text field in the Testcafe?
Hi Alex,
You can use type test method to input value in the fields. You need to specify locator and value inside the method so that type text method will send this value in the particular text field on the web page.
Eg: .typeText('#username','abcde')
.typeText('#password','Password!')