testcafe-vue-selectors
testcafe-vue-selectors copied to clipboard
TestCafe selector extensions for Vue.js apps.
https://github.com/nuxt/nuxt.js https://github.com/kartojal/testcafe-nuxt-selectors
Markup for reproduce: ```js Vue.component('total-value', { props: ['formatProperty'], template: '{{ formatProperty }}' }); Vue.component('Hello', { template: '' }); Vue.component('App', { template: '' }); new Vue({ el: '#root' }); ``` Test...
VueSelector will work only if the Vue.js application was built in the development mode. In the production mode, it is impossible to retrieve information about components (behavior like in the...