<legend id='386cz'><style id='386cz'><dir id='386cz'><q id='386cz'></q></dir></style></legend>
  • <tfoot id='386cz'></tfoot>

        <bdo id='386cz'></bdo><ul id='386cz'></ul>

      <small id='386cz'></small><noframes id='386cz'>

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

      1. 我如何从 Web 元素中获取文本并在控制台中打印

        时间:2023-09-06
          <bdo id='wYZMP'></bdo><ul id='wYZMP'></ul>

            <tbody id='wYZMP'></tbody>

          • <small id='wYZMP'></small><noframes id='wYZMP'>

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

              <legend id='wYZMP'><style id='wYZMP'><dir id='wYZMP'><q id='wYZMP'></q></dir></style></legend>
                <tfoot id='wYZMP'></tfoot>
                  本文介绍了我如何从 Web 元素中获取文本并在控制台中打印(例如)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我在从网页上的元素中获取文本时遇到问题.我正在使用 TestCafe e2e 框架并希望将文本 Web 元素的内容打印到控制台.能否提供一些代码?

                  I have a problem with getting a text from elements on a web page. I'm using TestCafe e2e framework and want to print the contents of a text web element to console. Can you provide some code?

                  const getInnerText = ClientFunction(() => homePage.kzLink.innerText);
                  console.log(getInnerText());
                  

                  我得到了什么:

                  ReExecutablePromise { _then: [], _fn: [Function], _taskPromise: null }
                  

                  推荐答案

                  要执行客户端函数,请使用 await 关键字和依赖项调用它.

                  To execute a client function, call it with the await keyword and a dependency.

                  const getInnerText = ClientFunction(() => homePage.kzLink.innerText, { 
                      dependencies: { homePage.kzLink }
                  });
                  
                  test('My Test', async t => {
                      const text = await getInnerText();
                      console.log(text);
                  });
                  

                  这篇关于我如何从 Web 元素中获取文本并在控制台中打印(例如)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何在 TestCafe 中的测试中共享测试文件之间的全 下一篇:Cypress.io:服务器错误 |404 - 找不到文件或目录

                  相关文章

                  最新文章

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

                    1. <small id='3wYc3'></small><noframes id='3wYc3'>

                      <legend id='3wYc3'><style id='3wYc3'><dir id='3wYc3'><q id='3wYc3'></q></dir></style></legend>
                        <bdo id='3wYc3'></bdo><ul id='3wYc3'></ul>