使用 Selenium-Webdriver 运行 Mocha 测试,我有
driver.get(destinationPage);
driver.wait(function() {
return driver.isElementPresent(By.xpath(xpathLocation));
}, 3000);
driver.findElement(By.xpath(xpathLocation))
.sendkeys('87654321');
done();
但是,我得到了错误TypeError: Object [object Object] has no method 'sendkeys'
为什么会这样?wait() 返回什么(如果有的话)?
谢谢!