在我的测试用例中,我使用sendKeys通过此命令将字符串填充到textarea
WebElement wStmtInput = driver.findElement(By.xpath("//textarea[@style='width:100%']"));
String sString= "SELECT * FROM ABC";
wStmtInput.clear();
wStmtInput.sendKeys(sString);
它通常发送" SELE"," S"," SEL" ......这样的事情。我的意思是它不能像我预期的那样发送完整的字符串。 我现在该如何解决这个问题呢?
我正在测试Chrome 58.0.3029.110。我的硒测试编程语言是JAVA。