This code work but sendKeys
send all char one by one and is it very very long time (40s).
String value = "...very long text...";
WebElement element = ...
element.sendKeys(value);
How to set text in textarea quickly using Java and Selenium? either with an element of Selenium or by modifying the speed or the characters are sent one by one temorary.
Please no solution with javascript execution.