Looking for a solution: I need to input text into a focused text area that does not have a static xpath. To achieve this, I am currently using
Actions actions = new Actions(driver);
actions.sendKeys(textarea).perform();
However, this method is pasting the values instead of typing them, which prevents the browser from showing auto suggestion lists.
Is there another option available to type the values without using sendKeys?
P.S: I am testing this scenario for languages like Hiragana and Katakana.