<legend id='xAsP1'><style id='xAsP1'><dir id='xAsP1'><q id='xAsP1'></q></dir></style></legend>
  • <i id='xAsP1'><tr id='xAsP1'><dt id='xAsP1'><q id='xAsP1'><span id='xAsP1'><b id='xAsP1'><form id='xAsP1'><ins id='xAsP1'></ins><ul id='xAsP1'></ul><sub id='xAsP1'></sub></form><legend id='xAsP1'></legend><bdo id='xAsP1'><pre id='xAsP1'><center id='xAsP1'></center></pre></bdo></b><th id='xAsP1'></th></span></q></dt></tr></i><div id='xAsP1'><tfoot id='xAsP1'></tfoot><dl id='xAsP1'><fieldset id='xAsP1'></fieldset></dl></div>

      <bdo id='xAsP1'></bdo><ul id='xAsP1'></ul>

    <small id='xAsP1'></small><noframes id='xAsP1'>

    <tfoot id='xAsP1'></tfoot>

      1. 如何使用 vue.js v-select 通过 cypress.io 查找元素并选

        时间:2023-09-06
          <bdo id='zCHoz'></bdo><ul id='zCHoz'></ul>
          <tfoot id='zCHoz'></tfoot>
            <tbody id='zCHoz'></tbody>

          <small id='zCHoz'></small><noframes id='zCHoz'>

                <legend id='zCHoz'><style id='zCHoz'><dir id='zCHoz'><q id='zCHoz'></q></dir></style></legend>
                <i id='zCHoz'><tr id='zCHoz'><dt id='zCHoz'><q id='zCHoz'><span id='zCHoz'><b id='zCHoz'><form id='zCHoz'><ins id='zCHoz'></ins><ul id='zCHoz'></ul><sub id='zCHoz'></sub></form><legend id='zCHoz'></legend><bdo id='zCHoz'><pre id='zCHoz'><center id='zCHoz'></center></pre></bdo></b><th id='zCHoz'></th></span></q></dt></tr></i><div id='zCHoz'><tfoot id='zCHoz'></tfoot><dl id='zCHoz'><fieldset id='zCHoz'></fieldset></dl></div>

                  本文介绍了如何使用 vue.js v-select 通过 cypress.io 查找元素并选择?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  抱歉,我需要有关通过 cypress.io 查找元素 v-select 和选择选项的帮助.

                  Sorry,I need help about find element v-select and select option by cypress.io.

                  <v-select
                        label="label"
                        v-model="ccRcode"
                        ref="ccRcode"
                        :items="getData"
                        item-text="descWithCode"
                        item-value="code"
                        value="{ ccRcode }"
                        data-test='test'
                  ></v-select>
                  

                  推荐答案

                  既然你使用的是 Vuetify 的 select,那么第一站应该是他们的文档.检查下面的参考资料.

                  Since you are using Vuetify's select, their documentation should be the first stop. Check the references below.

                  基本上,他们添加了 data-cy 数据属性,以便于定位元素.所以在你的例子中:

                  Basically, they add data-cy data attributes to make it easy to target elements. So in your example:

                  <v-select
                        label="label"
                        v-model="ccRcode"
                        ref="ccRcode"
                        :items="getData"
                        item-text="descWithCode"
                        item-value="code"
                        value="{ ccRcode }"
                        data-cy='select-input'
                  ></v-select>
                  

                  然后在你的测试中:

                  cy.get('[data-cy=select-input]').select('optionValue')
                  

                  参考资料:

                  • https://vuetifyjs.com/en/getting-started/unit-testing#e-2-e-tests
                  • https://docs.cypress.io/api/commands/select.html#语法

                  这篇关于如何使用 vue.js v-select 通过 cypress.io 查找元素并选择?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Testcafe - 在测试用例之外测试命令行参数 下一篇:如何使用 Selenium IDE 为自动完成 ul 单击指定的

                  相关文章

                  最新文章

                1. <small id='eit6G'></small><noframes id='eit6G'>

                  <legend id='eit6G'><style id='eit6G'><dir id='eit6G'><q id='eit6G'></q></dir></style></legend>
                  1. <tfoot id='eit6G'></tfoot>

                      • <bdo id='eit6G'></bdo><ul id='eit6G'></ul>
                      <i id='eit6G'><tr id='eit6G'><dt id='eit6G'><q id='eit6G'><span id='eit6G'><b id='eit6G'><form id='eit6G'><ins id='eit6G'></ins><ul id='eit6G'></ul><sub id='eit6G'></sub></form><legend id='eit6G'></legend><bdo id='eit6G'><pre id='eit6G'><center id='eit6G'></center></pre></bdo></b><th id='eit6G'></th></span></q></dt></tr></i><div id='eit6G'><tfoot id='eit6G'></tfoot><dl id='eit6G'><fieldset id='eit6G'></fieldset></dl></div>