我想将密钥发送到md-autocomplete,但我无法将密钥发送到文本字段,查找下面的代码
HTML:
量角器代码:
it('checking my test case',function() {
browser.get('http://localhost:8080/#/home');
var inputSearchTextBox = element(by.id("xyz"));
inputSearchTextBox.sendKeys('Boston,us,02120');
});
我收到以下错误:
Test checking my test case
Message:
NoSuchElementError: No element found using locator: By.id("xyz")
Stacktrace:
NoSuchElementError: No element found using locator: By.id("xyz")
角度材料链接:
有什么办法可以将密钥发送到md-autocomplete标记文本字段
最佳答案
原文链接:https://www.f2er.com/js/428916.html