The Webapplication I need to test uses reactive vars and the regular write operator (using .SendKeys() of selenium) leads to lost input. So when typing a string into an input field, every third character is lost, probably because of the JS processing involved.
I had to create a helper which types and verifies that the input is visible in the field;
This PR is just a quick and dirty implementation of that behavior, if you consider it to be relevant for a larger audience, I'd refactor it.
The Webapplication I need to test uses reactive vars and the regular write operator (using .SendKeys() of selenium) leads to lost input. So when typing a string into an input field, every third character is lost, probably because of the JS processing involved.
I had to create a helper which types and verifies that the input is visible in the field;
This PR is just a quick and dirty implementation of that behavior, if you consider it to be relevant for a larger audience, I'd refactor it.