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

javascript - How do I get a text of all the cells of the table using testcafe - Stack Overflow

programmeradmin1浏览0评论

I am using the testcafe testing framework - .
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
   }
}

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

I am 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
   }
}

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

Share Improve this question edited Aug 18, 2022 at 14:06 Alejandro B. 5,1122 gold badges36 silver badges63 bronze badges asked Dec 7, 2016 at 13:23 mlosevmlosev 5,2271 gold badge21 silver badges33 bronze badges 3
  • let I should probably be let i and table.rows.lenght should probably be table.rows.length. – RobG Commented Dec 7, 2016 at 13:27
  • Ok. I updated code example. And it still does not work. – mlosev Commented Dec 7, 2016 at 13:32
  • Should an answer be accepted? – Winny Commented Dec 1, 2021 at 17:55
Add a ment  | 

2 Answers 2

Reset to default 9

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
    }
}

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).

Do you need all text content? In this case you can just use ClientFunction

import { ClientFunction } from 'testcafe';

const getInnerText = ClientFunction(() => document.getElementById('table').innerText);

const text = await getInnerText();
发布评论

评论列表(0)

  1. 暂无评论