• <bdo id='dCkSd'></bdo><ul id='dCkSd'></ul>
      <tfoot id='dCkSd'></tfoot>

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

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

        如何使用 testcafe 获取表格中所有单元格的文本

        时间:2023-09-06
        <legend id='X4zYr'><style id='X4zYr'><dir id='X4zYr'><q id='X4zYr'></q></dir></style></legend>

            <tbody id='X4zYr'></tbody>
          <tfoot id='X4zYr'></tfoot>

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

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

                1. 本文介绍了如何使用 testcafe 获取表格中所有单元格的文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我使用 testcafe 测试框架 - https://devexpress.github.io/testcafe.
                  我写了以下代码:

                  I using the testcafe testing framework - https://devexpress.github.io/testcafe.
                  I wrote the following code:

                  const table = Selector('#table');
                  
                  for(let i = 0; i < table.rows.length; i++){
                     for(let j = 0; j < table.columns.length; j++) {
                           let tdText = await table.rows[i].cells[j].textContent;
                          //another actions
                     }
                  }
                  

                  如何使用 testcafe 获取表格中所有单元格的文本?

                  How do I can get a text of all the cells of the table using testcafe?

                  推荐答案

                  Selector 提供方法和属性来选择页面上的元素并获取它们的状态,但没有行"和列"属性.

                  Selector provides methods and properties to select elements on the page and get theirs state, but has no 'rows' and 'columns' properties.

                  所以,请使用以下解决方案:

                  So, use the following solution:

                  const table       = Selector('#table');
                  const rowCount    = await table.find('tr').count;
                  const columnCount = await table.find('tr').nth(0).find('td').count;
                  
                  for(let i = 0; i < rowCount; i++) {
                      for(let j = 0; j < columnCount; j++) {  
                          let tdText = await table.find('tr').nth(i).find('td').nth(j).textContent;
                          //another actions
                      }
                  }
                  

                  请注意,Selector 从 v0.11.0 开始就提供了 'find' 和 'nth' 功能(它将很快发布,但它还可以通过 npm "alpha" 标记使用).

                  Note that Selector provides 'find' and 'nth' functions since v0.11.0 (it will be released soon, but it's available yet with npm "alpha" tag).

                  这篇关于如何使用 testcafe 获取表格中所有单元格的文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:node_modules 未被识别为内部或外部命令 下一篇:使用 Selenium 和 CSS 查找阴影 DOM 文本

                  相关文章

                  最新文章

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

                      <bdo id='9HZIf'></bdo><ul id='9HZIf'></ul>

                    <small id='9HZIf'></small><noframes id='9HZIf'>

                    1. <tfoot id='9HZIf'></tfoot>