...

/

Quiz Yourself on Testing Events

Quiz Yourself on Testing Events

Test your knowledge of how to simulate user interactions in your tests.

We'll cover the following...
Technical Quiz
1.

How do you simulate a left mouse click using the native API?

A.
myElement.simulate().leftClick();
B.
myElement.dispatchEvent(new MouseEvent('click', {button: 0}));
C.
myElement.leftClick();
D.
myElement.and(new MouseEvent('left'));

1 / 5