I'm automating a test on a search field but typeText() enters the search text much faster than a user so the search field's autocompletion feature doesn't have time to respond after each keystroke.
One solution proposed in Slow down Espresso suggests using IdlingResource but I'm hoping there's a simpler solution.
A similar problem was Espresso - typeText() not working correclty, sometimes letters are missing but that's different because the full text is getting inputted, it's just the code that responds to each typed character isn't given enough time to respond.
How can I force Espresso to type the characters slowly enough into a search field for the autocomplete to have enough time to finish? The autocomplete is tuned to respond to a human's speed of typing.