You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
You have ng-minlength="6" on your password input field, but are sending a password that is only 5 characters long. As a result, the model value is expected to be undefined.
@juliemr Even I am facing similar issue.
I have a input box <input type="text" id="select" ng-model-options="{ debounce: 1000 }" ng-model="selectedItem.displayText" >
This input is acting as a filter for a ng-repeat.
But since protractor is not respecting the debounce setting, I am getting incorrect list for the ng-repeat in my test.
Hi, I have the same problem. Due to accessibility and to inform the user the number of items filtered, I have added a debounce in the phonecat project but after that, the e2e do not work.
Hi,
We noticed that protractor does not works correctly in case of debounce property is setup in ng-model-options of the control like below:
When you run something like this:
var txtEmail = element(by.model('user.email'));
var txtPassword = element(by.model('user.password'));
var btnSignIn = element(by.buttonText('Sign In'));
...
txtEmail.sendKeys("[email protected]");
txtPassword.sendKeys("qqqqq");
btnSignIn.click();
....click will be performed prior to txtPassword field will be populated.
The text was updated successfully, but these errors were encountered: