javascript - Protractor - Element is not clickable at point (x,y) when using ng-change -
<select id="cbcategory" ui-select2 name="cbcategory" ng-model="categorycombo.category" class="show-tick form-control comboblue" ng-change="loadprice()" required> <option ng-repeat="category in categories" value="{{category}}" {{category.name}}</option> </select>
when have select this, without ng-change
, works in both solutions:
1. element.all(by.repeater('category in categories').row(0)).click();
2. element(by.id("cbcategory")).sendkeys('category1');
but when have ng-change
in select, both solutions not working.
click select
before clicking option
, e.g.:
var selectelement = element(by.id("cbcategory")); selectelement.click(); var option = selectelement.all(by.tagname("option")).first(); option.click();
you may want make working select->option easier making abstraction, see:
Comments
Post a Comment