[Vuejs]-Test input made in previous stepper shown in current stepper

0👍

Turns out, there is a thing called ‘shadow dom’ – which is not enabled by default in Firefox, the browser I used to inspect (and neither in Electron).

Sneaky bastards hide until you turn on the relevant settings.
For electron(v91):
Cogwheel -> show user agent shadow doms.
Firefox(v93):
about:config in adressbar -> search for devtools.inspector.showAllAnonymousContent and turn it to true

You can then work with them using
https://docs.cypress.io/api/commands/shadow

Leave a comment