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 has been archived by the owner on Apr 12, 2024. It is now read-only.
For the issue which was fixed (#1840), it seems like the commit (ec54712) has introduced a new issue.
If we are using jQuery for the scenario runner:
element(selector).query(function(selectedElements){// would expect this to passexpect(selectedElementsinstanceofjQuery).toBeTruthy();// but it fails});
In this case if we use angular.forEach to iterate over the selectedElements it iterates over the length as well.
The text was updated successfully, but these errors were encountered:
Since it is not an instance of jQuery, and with recent changes to angular.forEach, iterating over that object would cause unexpected results (it would also iterate over the length property).
For the issue which was fixed (#1840), it seems like the commit (ec54712) has introduced a new issue.
If we are using jQuery for the scenario runner:
In this case if we use angular.forEach to iterate over the selectedElements it iterates over the length as well.
The text was updated successfully, but these errors were encountered: