Sendkeys不发送多个单词

时间:2018-01-02 14:54:27

标签: selenium

当我传递一个单词时,例如" 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);

0 个答案:

没有答案