How to enter data in e2e test

@aleksandra_budnik these tests are fine in terms of unit testing indeed. But now I have to automate “manual testing”.
You have wrote something about bubble events trought the DOM here Select edit in selenium which is something that I have tried to no avail, but this is more because

  1. I don’t know which native JS event should I send (eg paste action)
  2. I don’t to which DOM element (and in which state) it should be send to

Second point is hard to figure out without checking the code and understanding what sort of magic HOT is doing under the hood to eg display textarea as input field in the cell (iv seen copied tables etc)
Could you guide me on that?

The overall goal here - even putting aside Selenium - is to answer how to simulate paste event of data into the HOT table using JS events (probaly) without using HOT API directly - after all, its about simulating user input. User does not use API directly;)

Next layer of impersonating user interaction whould be moving mouse and interacting with the browser instead of using pupeteer drivers for browsers, but that would be an overkill - but that would work for sure