Cina Saffary
Cina Saffary
This feature would be immensely useful. > validateField Returning a single key-value pair, i.e. { firstName: 'First name is required' }, if invalid, or undefined if the field is valid....
I suspect this is due to a race condition when registering msw handlers. https://github.com/valendres/playwright-msw/blob/4202f690dadec92324b898c3e209b76257f89641/packages/playwright-msw/src/router.ts#L124-L139 `registerMswHandler()` checks to see if there's existing route data, and if not proceeds to initialize it....
`.form-group` elements can only contain a single input element. Move each checkbox to its own `.form-group`
According to Bootstrap, it seems as though checkboxes don't belong in a `.form-group` at all, but rather a `.checkbox` container. I'll extend the plugin to check for that as well...
You'll need to get rid of the parent `.form-group` div and add a `form-group` class to each individual `.checkbox` div. This will screw up the styles a little, so you'll...
So investigating this further, it seems as though no change to the plugin is needed. Ignore what I said about adding the `form-group` class to each `.checkbox`. You should put...
Some changes to the validator plugin are preventing this from working. I suggest you stick with v0.9.0 until I can push out some changes to support this use case.
Can you put an example on JSBin? Here's a template: http://jsbin.com/zofugirigi/1/edit
Hmm, I'll look into it. Thanks.
Browsers seem to be inconsistent with whether or not they raise `input` events whenever they autofill forms. If anyone has any ideas on how to get around this, please let...