AngularJS预定量角器

时间:2015-03-10 11:21:17

标签: angularjs protractor angular-ui-bootstrap bootstrap-typeahead angularjs-e2e

我试图使用量角器来实施一些e2e测试。 我想模拟用户与自动完成类型主题控件的交互。 我找不到从自动填充列表中选择(单击)一个元素的方法。 一些建议?

我使用的是AngularJSv1.3.3和Bootstrap v3.3.0。

1 个答案:

答案 0 :(得分:0)

这对我有用:

// type into the typeahead
element(by.model('job')).sendKeys('123');

// uib-typeahead uses match in matches...  
element.all(by.repeater('match in matches')).get(0).click();