最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

testing - When using vuetify, wrapper.findComponent not works - Stack Overflow

programmeradmin3浏览0评论

I have several VTextField in one page, they define like this

<v-text-field
            v-model="searchContent"
            ref="searchDelcarationProductRef"
            :label="t('Declaration.SearchContent')"
            :placeholder="t('Declaration.PleaseSearchContent')"
            persistent-placeholder
            variant="outlined"
            density="compact"
            hide-details
            @keyup.enter="handleSearch"
          >
            <template #append-inner>
              <v-icon @click="handleSearch">mdi-magnify</v-icon>
            </template>
          </v-text-field>

and in the test file, I try to get this component by

const searchContent = wrapper.find('[ref="searchDelcarationProductRef"]');
const searchContent = wrapper.find({ref : 'searchDelcarationProductRef'});
const searchContent = wrapper?.find('[data-testid="searchDelcarationProductRef"]');
const searchContent = wrapper?.find('[data-test="searchDelcarationProductRef"]');

none of them can exactly find the component, the result is empty.....

currently i find this component by

const warehouseSelect = wrapper.findAllComponents(VSelect)[0];
expect(warehouseSelect).toBeTruthy();

warehouseSelect.setValue(testWarehouseData().data[0].id);
const typeSelect = wrapper.findAllComponents(VSelect)[1];

this way is kind of stupid, it can not handle with complicated situations.

how can i get this component in my unit test, pls?

发布评论

评论列表(0)

  1. 暂无评论