当我传递一个单词时,例如" Gopi",使用sendKeys()
到一个文本框,它可以工作。当我尝试发送多个单词,例如" Gopi Kingston"时,该值立即消失。
String value = "Gopi Kingston"; // this does not work
Driver.findElement(By.id("searchbox")).sendKeys(value);
String value = "Gopi"; // this works
Driver.findElement(By.id("searchbox")).sendKeys(value);