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
box(name='foo', ...) is translated to <element data-name='foo' .../>, always.
option(name='foo') is translated to <element data-name='foo' .../>, but only where possible.
In general, data-name='foo' is set on the container, not the element itself, so if you're using query selectors in the test automation framework, use [data-name='foo'] input to refer to input elements and [data-name='foo'] button to refer to buttons, instead of input[data-name='foo'] or button[data-name='foo'], i.e. look for a child, not self.
No description provided.
The text was updated successfully, but these errors were encountered: