We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using this plugin with Protractor. Have these lines in my spec:
view.chat.sendMessage(1); retry.run(function () { view.chat.sendMessage(2); }); view.chat.sendMessage(3);
view.chat.sendMessage looks like this:
view.chat.sendMessage
function () { element(by.model('message')).sendKeys(msg); return element(by.buttonText('Send')).click(); }
I expected this output in my chat:
1 2 3
but got this:
2 1 3
Shouldn't actions in the function passed onto retry.run be added to the control flow and be executed in the order I expected?
retry.run
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using this plugin with Protractor. Have these lines in my spec:
view.chat.sendMessage
looks like this:I expected this output in my chat:
but got this:
Shouldn't actions in the function passed onto
retry.run
be added to the control flow and be executed in the order I expected?The text was updated successfully, but these errors were encountered: