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
if the selector for the action is based on the repeater, and the repeater uses the '!' character for negation, the export routine doesn't escape the single quotes.
if the selector for the action is based on the repeater, and the repeater uses the '!' character for negation, the export routine doesn't escape the single quotes.
element(by.repeater('shift in shifts | filter: { shiftOwner: Session.data.PERSONID } | filter: { shiftStatus: '!' + 5 } ').row(1))
should be
element(by.repeater('shift in shifts | filter: { shiftOwner: Session.data.PERSONID } | filter: { shiftStatus: '!' + 5 } ').row(1))
This seems like a simple fix does anyone know where the code that creates the xported JS lives?
The text was updated successfully, but these errors were encountered: