How to get the element count matching text in nth column of Span Table
Col1 Col2 Col3 Col4 Col5
2 XYZ Andy Div2 Address2
3 NNN Spencer Div1 Address3
4 YYY Krish Div8 Address4
5 ABC Sima Div1 Address5
I have a span table like the one in the above example, and I'm trying to get the count of cells matching text Div1
in the 4th column (Col4
). I tried the below code and got an error (invalid xpath locator):
${RecordCount}= Get Matching Xpath Count //td[4][matches(text(),'Div1')]
xpath robotframework selenium2library
add a comment |
Col1 Col2 Col3 Col4 Col5
2 XYZ Andy Div2 Address2
3 NNN Spencer Div1 Address3
4 YYY Krish Div8 Address4
5 ABC Sima Div1 Address5
I have a span table like the one in the above example, and I'm trying to get the count of cells matching text Div1
in the 4th column (Col4
). I tried the below code and got an error (invalid xpath locator):
${RecordCount}= Get Matching Xpath Count //td[4][matches(text(),'Div1')]
xpath robotframework selenium2library
add a comment |
Col1 Col2 Col3 Col4 Col5
2 XYZ Andy Div2 Address2
3 NNN Spencer Div1 Address3
4 YYY Krish Div8 Address4
5 ABC Sima Div1 Address5
I have a span table like the one in the above example, and I'm trying to get the count of cells matching text Div1
in the 4th column (Col4
). I tried the below code and got an error (invalid xpath locator):
${RecordCount}= Get Matching Xpath Count //td[4][matches(text(),'Div1')]
xpath robotframework selenium2library
Col1 Col2 Col3 Col4 Col5
2 XYZ Andy Div2 Address2
3 NNN Spencer Div1 Address3
4 YYY Krish Div8 Address4
5 ABC Sima Div1 Address5
I have a span table like the one in the above example, and I'm trying to get the count of cells matching text Div1
in the 4th column (Col4
). I tried the below code and got an error (invalid xpath locator):
${RecordCount}= Get Matching Xpath Count //td[4][matches(text(),'Div1')]
xpath robotframework selenium2library
xpath robotframework selenium2library
edited Nov 8 '18 at 8:39


Todor Minakov
7,65212739
7,65212739
asked Nov 7 '18 at 22:38
SarahSarah
376
376
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
The issue is because of the matches()
function - it is present in XPath 2.0, while all the browsers support only v1.0; thus the error the locator is invalid.
Just change it to contains()
and it'll work for you:
//td[4][contains(text(),'Div1')]
Thanks Todor. matches() function was the issue as you pointed out. Since I need exact match of text, I changed it to //td[4][text()='Div1'] , and it worked.
– Sarah
Nov 8 '18 at 18:03
add a comment |
From the SeleniumLibrary document it says that the Get Matching Xpath Count keyword is DEPRECATED in SeleniumLibrary 3.2. Use Get Element Count instead. So you should try to use "Get Element Count" keyword instead. The error you mentioned means your input xpath is wrong. Probably try this xpath=//td[text()="Div1"]
Hi Thanh le - I started off with xpath=//td[text()="Div1"] only, but that returned me all the cells contained 'Div1' including the cells from other columns. But I need to get the count of Cells with matching text from ONLY the fourth column.
– Sarah
Nov 8 '18 at 3:57
Then I think you can add the index number as your first post. Probably something like this xpath=//td[4][text()="Div1"]
– thanh le
Nov 8 '18 at 9:45
add a comment |
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%2f53198962%2fhow-to-get-the-element-count-matching-text-in-nth-column-of-span-table%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
The issue is because of the matches()
function - it is present in XPath 2.0, while all the browsers support only v1.0; thus the error the locator is invalid.
Just change it to contains()
and it'll work for you:
//td[4][contains(text(),'Div1')]
Thanks Todor. matches() function was the issue as you pointed out. Since I need exact match of text, I changed it to //td[4][text()='Div1'] , and it worked.
– Sarah
Nov 8 '18 at 18:03
add a comment |
The issue is because of the matches()
function - it is present in XPath 2.0, while all the browsers support only v1.0; thus the error the locator is invalid.
Just change it to contains()
and it'll work for you:
//td[4][contains(text(),'Div1')]
Thanks Todor. matches() function was the issue as you pointed out. Since I need exact match of text, I changed it to //td[4][text()='Div1'] , and it worked.
– Sarah
Nov 8 '18 at 18:03
add a comment |
The issue is because of the matches()
function - it is present in XPath 2.0, while all the browsers support only v1.0; thus the error the locator is invalid.
Just change it to contains()
and it'll work for you:
//td[4][contains(text(),'Div1')]
The issue is because of the matches()
function - it is present in XPath 2.0, while all the browsers support only v1.0; thus the error the locator is invalid.
Just change it to contains()
and it'll work for you:
//td[4][contains(text(),'Div1')]
answered Nov 8 '18 at 5:33


Todor MinakovTodor Minakov
7,65212739
7,65212739
Thanks Todor. matches() function was the issue as you pointed out. Since I need exact match of text, I changed it to //td[4][text()='Div1'] , and it worked.
– Sarah
Nov 8 '18 at 18:03
add a comment |
Thanks Todor. matches() function was the issue as you pointed out. Since I need exact match of text, I changed it to //td[4][text()='Div1'] , and it worked.
– Sarah
Nov 8 '18 at 18:03
Thanks Todor. matches() function was the issue as you pointed out. Since I need exact match of text, I changed it to //td[4][text()='Div1'] , and it worked.
– Sarah
Nov 8 '18 at 18:03
Thanks Todor. matches() function was the issue as you pointed out. Since I need exact match of text, I changed it to //td[4][text()='Div1'] , and it worked.
– Sarah
Nov 8 '18 at 18:03
add a comment |
From the SeleniumLibrary document it says that the Get Matching Xpath Count keyword is DEPRECATED in SeleniumLibrary 3.2. Use Get Element Count instead. So you should try to use "Get Element Count" keyword instead. The error you mentioned means your input xpath is wrong. Probably try this xpath=//td[text()="Div1"]
Hi Thanh le - I started off with xpath=//td[text()="Div1"] only, but that returned me all the cells contained 'Div1' including the cells from other columns. But I need to get the count of Cells with matching text from ONLY the fourth column.
– Sarah
Nov 8 '18 at 3:57
Then I think you can add the index number as your first post. Probably something like this xpath=//td[4][text()="Div1"]
– thanh le
Nov 8 '18 at 9:45
add a comment |
From the SeleniumLibrary document it says that the Get Matching Xpath Count keyword is DEPRECATED in SeleniumLibrary 3.2. Use Get Element Count instead. So you should try to use "Get Element Count" keyword instead. The error you mentioned means your input xpath is wrong. Probably try this xpath=//td[text()="Div1"]
Hi Thanh le - I started off with xpath=//td[text()="Div1"] only, but that returned me all the cells contained 'Div1' including the cells from other columns. But I need to get the count of Cells with matching text from ONLY the fourth column.
– Sarah
Nov 8 '18 at 3:57
Then I think you can add the index number as your first post. Probably something like this xpath=//td[4][text()="Div1"]
– thanh le
Nov 8 '18 at 9:45
add a comment |
From the SeleniumLibrary document it says that the Get Matching Xpath Count keyword is DEPRECATED in SeleniumLibrary 3.2. Use Get Element Count instead. So you should try to use "Get Element Count" keyword instead. The error you mentioned means your input xpath is wrong. Probably try this xpath=//td[text()="Div1"]
From the SeleniumLibrary document it says that the Get Matching Xpath Count keyword is DEPRECATED in SeleniumLibrary 3.2. Use Get Element Count instead. So you should try to use "Get Element Count" keyword instead. The error you mentioned means your input xpath is wrong. Probably try this xpath=//td[text()="Div1"]
edited Jan 2 at 21:19


Bence Kaulics
3,21372242
3,21372242
answered Nov 8 '18 at 1:43


thanh lethanh le
1796
1796
Hi Thanh le - I started off with xpath=//td[text()="Div1"] only, but that returned me all the cells contained 'Div1' including the cells from other columns. But I need to get the count of Cells with matching text from ONLY the fourth column.
– Sarah
Nov 8 '18 at 3:57
Then I think you can add the index number as your first post. Probably something like this xpath=//td[4][text()="Div1"]
– thanh le
Nov 8 '18 at 9:45
add a comment |
Hi Thanh le - I started off with xpath=//td[text()="Div1"] only, but that returned me all the cells contained 'Div1' including the cells from other columns. But I need to get the count of Cells with matching text from ONLY the fourth column.
– Sarah
Nov 8 '18 at 3:57
Then I think you can add the index number as your first post. Probably something like this xpath=//td[4][text()="Div1"]
– thanh le
Nov 8 '18 at 9:45
Hi Thanh le - I started off with xpath=//td[text()="Div1"] only, but that returned me all the cells contained 'Div1' including the cells from other columns. But I need to get the count of Cells with matching text from ONLY the fourth column.
– Sarah
Nov 8 '18 at 3:57
Hi Thanh le - I started off with xpath=//td[text()="Div1"] only, but that returned me all the cells contained 'Div1' including the cells from other columns. But I need to get the count of Cells with matching text from ONLY the fourth column.
– Sarah
Nov 8 '18 at 3:57
Then I think you can add the index number as your first post. Probably something like this xpath=//td[4][text()="Div1"]
– thanh le
Nov 8 '18 at 9:45
Then I think you can add the index number as your first post. Probably something like this xpath=//td[4][text()="Div1"]
– thanh le
Nov 8 '18 at 9:45
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%2f53198962%2fhow-to-get-the-element-count-matching-text-in-nth-column-of-span-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