programing

나는 심판 vue 시험 utils를 사용하여 전자 요소를 선택할 수 있다.

copyandpastes 2022. 8. 30. 22:57
반응형

나는 심판 vue 시험 utils를 사용하여 전자 요소를 선택할 수 있다.

만약 이미지를 가지고 있다.

<img class="pineapple" ref="pineapple" src="pineapple.jpg" />

나는달러 메일 박스를 사용할 수 있거든

expect(wrapper.find($refs.pineapple).exists()).toBe(true)

대신

expect(wrapper.find('.pineapple').exists()).toBe(true)

수 요.wrapper.find께 the와 ref★★★★★★★★★★★★★★★★★★.

expect(wrapper.find({ref: 'pineapple'}).exists()).toBe(true)

그 뷰 시험 util 도움말:부터.

옵션 개체를 찾아라

휴식

발굴품 옵션 개체를 사용하여 뷰 시험 Utils달러의 래퍼 요소 요소에 선택을 허용하고 있다.

const buttonWrapper = wrapper.find({ ref: 'myButton' })
buttonWrapper.trigger('click')

https://vue-test-utils.vuejs.org/api/selectors.html

언급URL:https://stackoverflow.com/questions/55455763/can-i-select-an-element-by-ref-using-vue-test-utils

반응형