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.
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("qqq@asd.com");
txtPassword.sendKeys("qqqqq");
btnSignIn.click();
....click will be performed prior to txtPassword field will be populated.