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
When creating an action (e.g. 1367) with multiple selectors (e.g. button[data-attr="select-platform-Web"] & button[data-attr="select-platform-Mobile"], the app matches events that should not be matched (e.g. clicked on textarea: <textarea class="form-control"></textarea>)
When creating an action with a wildcard selector (e.g. button[data-attr*="select-platform-"], no events are matched at all.
Expected behavior
The action should match only the events that are triggered by relevant elements.
Bug description
button[data-attr="select-platform-Web"]
&button[data-attr="select-platform-Mobile"]
, the app matches events that should not be matched (e.g. clicked on textarea:<textarea class="form-control"></textarea>
)button[data-attr*="select-platform-"]
, no events are matched at all.Expected behavior
The action should match only the events that are triggered by relevant elements.
How to reproduce
Environment
The text was updated successfully, but these errors were encountered: