Performing a count on a table
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I am trying to perform a count on a table being displayed on a web application. I want to find out how many rows are within the table & then from this I want to check a number that is displayed on the screen.
I'm not entirely sure how to do this, I've researched online but can't find anything to help. Would anyone be able to suggest an idea, please?
javascript web-applications automated-tests e2e-testing testcafe
add a comment |
I am trying to perform a count on a table being displayed on a web application. I want to find out how many rows are within the table & then from this I want to check a number that is displayed on the screen.
I'm not entirely sure how to do this, I've researched online but can't find anything to help. Would anyone be able to suggest an idea, please?
javascript web-applications automated-tests e2e-testing testcafe
1
Welcome to SO! I'd suggest adding just a little more context to your question to help get better answers. The only clue on the environment you are using is one of the tags. Perhaps include some details on the tools, language, and frameworks you are using as well?
– Mattie
Jul 11 '18 at 12:13
1
You probably have to write a Client Function devexpress.github.io/testcafe/documentation/test-api/… which will return number of rows in your table
– Roman Eremin
Jul 11 '18 at 13:33
1
I've had luck with something like const table = await something.find('.my-table); then do const rows = table.find('tbody > tr'); followed by await t.expect(rows.exists).ok() with finally, by const count = rows.count it works. The assertion "it exists" tends to then allow me followup with getting a count of them. Otherwise I get a count of zero.
– Roger Studner
Jan 7 at 20:49
add a comment |
I am trying to perform a count on a table being displayed on a web application. I want to find out how many rows are within the table & then from this I want to check a number that is displayed on the screen.
I'm not entirely sure how to do this, I've researched online but can't find anything to help. Would anyone be able to suggest an idea, please?
javascript web-applications automated-tests e2e-testing testcafe
I am trying to perform a count on a table being displayed on a web application. I want to find out how many rows are within the table & then from this I want to check a number that is displayed on the screen.
I'm not entirely sure how to do this, I've researched online but can't find anything to help. Would anyone be able to suggest an idea, please?
javascript web-applications automated-tests e2e-testing testcafe
javascript web-applications automated-tests e2e-testing testcafe
edited Mar 29 at 11:55
Alex Skorkin
2,35721837
2,35721837
asked Jul 11 '18 at 12:05
huss-ishuss-is
336
336
1
Welcome to SO! I'd suggest adding just a little more context to your question to help get better answers. The only clue on the environment you are using is one of the tags. Perhaps include some details on the tools, language, and frameworks you are using as well?
– Mattie
Jul 11 '18 at 12:13
1
You probably have to write a Client Function devexpress.github.io/testcafe/documentation/test-api/… which will return number of rows in your table
– Roman Eremin
Jul 11 '18 at 13:33
1
I've had luck with something like const table = await something.find('.my-table); then do const rows = table.find('tbody > tr'); followed by await t.expect(rows.exists).ok() with finally, by const count = rows.count it works. The assertion "it exists" tends to then allow me followup with getting a count of them. Otherwise I get a count of zero.
– Roger Studner
Jan 7 at 20:49
add a comment |
1
Welcome to SO! I'd suggest adding just a little more context to your question to help get better answers. The only clue on the environment you are using is one of the tags. Perhaps include some details on the tools, language, and frameworks you are using as well?
– Mattie
Jul 11 '18 at 12:13
1
You probably have to write a Client Function devexpress.github.io/testcafe/documentation/test-api/… which will return number of rows in your table
– Roman Eremin
Jul 11 '18 at 13:33
1
I've had luck with something like const table = await something.find('.my-table); then do const rows = table.find('tbody > tr'); followed by await t.expect(rows.exists).ok() with finally, by const count = rows.count it works. The assertion "it exists" tends to then allow me followup with getting a count of them. Otherwise I get a count of zero.
– Roger Studner
Jan 7 at 20:49
1
1
Welcome to SO! I'd suggest adding just a little more context to your question to help get better answers. The only clue on the environment you are using is one of the tags. Perhaps include some details on the tools, language, and frameworks you are using as well?
– Mattie
Jul 11 '18 at 12:13
Welcome to SO! I'd suggest adding just a little more context to your question to help get better answers. The only clue on the environment you are using is one of the tags. Perhaps include some details on the tools, language, and frameworks you are using as well?
– Mattie
Jul 11 '18 at 12:13
1
1
You probably have to write a Client Function devexpress.github.io/testcafe/documentation/test-api/… which will return number of rows in your table
– Roman Eremin
Jul 11 '18 at 13:33
You probably have to write a Client Function devexpress.github.io/testcafe/documentation/test-api/… which will return number of rows in your table
– Roman Eremin
Jul 11 '18 at 13:33
1
1
I've had luck with something like const table = await something.find('.my-table); then do const rows = table.find('tbody > tr'); followed by await t.expect(rows.exists).ok() with finally, by const count = rows.count it works. The assertion "it exists" tends to then allow me followup with getting a count of them. Otherwise I get a count of zero.
– Roger Studner
Jan 7 at 20:49
I've had luck with something like const table = await something.find('.my-table); then do const rows = table.find('tbody > tr'); followed by await t.expect(rows.exists).ok() with finally, by const count = rows.count it works. The assertion "it exists" tends to then allow me followup with getting a count of them. Otherwise I get a count of zero.
– Roger Studner
Jan 7 at 20:49
add a comment |
1 Answer
1
active
oldest
votes
If you are using a regular HTML table, you can use the approach provided by Roger Studner in his comment; e.g.:
const table = await Selector().find('.my-table);
const rows = table.find('tbody > tr');
const count = rows.count;
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f51285054%2fperforming-a-count-on-a-table%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you are using a regular HTML table, you can use the approach provided by Roger Studner in his comment; e.g.:
const table = await Selector().find('.my-table);
const rows = table.find('tbody > tr');
const count = rows.count;
add a comment |
If you are using a regular HTML table, you can use the approach provided by Roger Studner in his comment; e.g.:
const table = await Selector().find('.my-table);
const rows = table.find('tbody > tr');
const count = rows.count;
add a comment |
If you are using a regular HTML table, you can use the approach provided by Roger Studner in his comment; e.g.:
const table = await Selector().find('.my-table);
const rows = table.find('tbody > tr');
const count = rows.count;
If you are using a regular HTML table, you can use the approach provided by Roger Studner in his comment; e.g.:
const table = await Selector().find('.my-table);
const rows = table.find('tbody > tr');
const count = rows.count;
answered Mar 29 at 11:55
Alex SkorkinAlex Skorkin
2,35721837
2,35721837
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f51285054%2fperforming-a-count-on-a-table%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Welcome to SO! I'd suggest adding just a little more context to your question to help get better answers. The only clue on the environment you are using is one of the tags. Perhaps include some details on the tools, language, and frameworks you are using as well?
– Mattie
Jul 11 '18 at 12:13
1
You probably have to write a Client Function devexpress.github.io/testcafe/documentation/test-api/… which will return number of rows in your table
– Roman Eremin
Jul 11 '18 at 13:33
1
I've had luck with something like const table = await something.find('.my-table); then do const rows = table.find('tbody > tr'); followed by await t.expect(rows.exists).ok() with finally, by const count = rows.count it works. The assertion "it exists" tends to then allow me followup with getting a count of them. Otherwise I get a count of zero.
– Roger Studner
Jan 7 at 20:49