I'm curious as to why cypress seems to be triggering a click at the beginning of the .type() command. Here's the whole command I'm trying to run:
cy.contains(".rt-tr", "Taoh").type("{downarrow}");
Unfortunately as you can see in the picture below, this type action seems to trigger a click:

I can potentially understand why that might make sense in order to bring that element into focus, but what about if that element IS already focused.
I tried doing
cy.contains(".rt-tr", "Taoh").click().type("{downarrow}");
And it seems to trigger 2 click events. This is confusing to me. Any way to avoid that click would be appreciated. Thanks!
Op was able to solve it by adding .focus
cy.contains(".rt-tr", "Taoh").focus().type("{downarrow}")