Complete the code to import the cypress-real-events plugin correctly.
import '[1]';
The correct import for enabling cypress-real-events support is cypress-real-events/support.
Complete the code to trigger a native click event on a button with id 'submit'.
cy.get('#submit').[1]();
The realClick() command triggers a native click event using cypress-real-events.
Fix the error in the code to type text 'hello' using native keyboard events.
cy.get('input').[1]('hello');
The correct command to type text with native events is realType().
Fill both blanks to trigger a native hover and then a native click on a button with class 'btn'.
cy.get('.btn').[1]().[2]();
Use realHover() to trigger native hover, then realClick() for native click.
Fill all three blanks to chain native events: focus, type 'test', and blur on an input with name 'email'.
cy.get('input[name="email"]').[1]().[2]('test').[3]();
Use realFocus() to focus, realType() to type text, and realBlur() to blur the input with native events.