I'm trying to send a half-size text(Japanese) to textbox in selenium but it has problem. I have researched and found some solution, unfortunately no one work. I think the problem is encoding character. This is one of many solution I used to try:
ChromeOptions option = new ChromeOptions();
option.addArguments("--lang=ja");
WebDriver driver = new ChromeDriver(option);
This is a half-size text example:
カタカナ
Any solution will be appreciated. Many thanks.