Iterate until matching text is found
I am writing a test which should iterate until a partial matching text is found . Once found , it should do some thing. Here is my code.
let getName = await $$('.button').getText();
if (getName === 'New name')
// do something here
My test doesn't iterate even though there exists a matching name. It should also consider partials tests, for instance New name 1.
Appreciate your suggestions.
protractor
add a comment |
I am writing a test which should iterate until a partial matching text is found . Once found , it should do some thing. Here is my code.
let getName = await $$('.button').getText();
if (getName === 'New name')
// do something here
My test doesn't iterate even though there exists a matching name. It should also consider partials tests, for instance New name 1.
Appreciate your suggestions.
protractor
Why do you have 2 closing parenthesis ?
– executable
Nov 14 '18 at 9:34
Thanks for finding. I corrected it @executable
– Ninja
Nov 14 '18 at 9:45
add a comment |
I am writing a test which should iterate until a partial matching text is found . Once found , it should do some thing. Here is my code.
let getName = await $$('.button').getText();
if (getName === 'New name')
// do something here
My test doesn't iterate even though there exists a matching name. It should also consider partials tests, for instance New name 1.
Appreciate your suggestions.
protractor
I am writing a test which should iterate until a partial matching text is found . Once found , it should do some thing. Here is my code.
let getName = await $$('.button').getText();
if (getName === 'New name')
// do something here
My test doesn't iterate even though there exists a matching name. It should also consider partials tests, for instance New name 1.
Appreciate your suggestions.
protractor
protractor
edited Nov 14 '18 at 9:36
Ninja
asked Nov 14 '18 at 9:30
NinjaNinja
406
406
Why do you have 2 closing parenthesis ?
– executable
Nov 14 '18 at 9:34
Thanks for finding. I corrected it @executable
– Ninja
Nov 14 '18 at 9:45
add a comment |
Why do you have 2 closing parenthesis ?
– executable
Nov 14 '18 at 9:34
Thanks for finding. I corrected it @executable
– Ninja
Nov 14 '18 at 9:45
Why do you have 2 closing parenthesis ?
– executable
Nov 14 '18 at 9:34
Why do you have 2 closing parenthesis ?
– executable
Nov 14 '18 at 9:34
Thanks for finding. I corrected it @executable
– Ninja
Nov 14 '18 at 9:45
Thanks for finding. I corrected it @executable
– Ninja
Nov 14 '18 at 9:45
add a comment |
1 Answer
1
active
oldest
votes
My answer is a shot in a dark due to lack of details in your question, but I'll try to guess your problem.
$$().getText()
returns array of strings, thus your code must be
let names = await $$('.button').getText();
for (let i=0; i<names.length; i++)
if (names[i].includes('New name'))
// do something here
But when you await $$().getText()
, and there are more than ~10 elements, be ready to face this error Random occurrences of Failed: ECONNREFUSED connect ECONNREFUSED 127.0.0.1 when running protractor tests
Actually, I must include another guess here based on an assumption you'll need to interact with the first element that matches condition
let $newNameElement = await $$('.button').filter( $elem =>
(await $elem.getText()).toLowerCase().includes('new name');
).get(0);
// do whatever you want with your $newNameElement
lmk if any problems
– Sergey Pleshakov
Nov 14 '18 at 18:29
Thanks for this. But the if statement still doesn't execute if use includes. But If i write if (name[i] === 'New name') it works. This way I can only validate one string. I want to match against multiple values
– Ninja
Nov 15 '18 at 15:12
when you find those elements, what exactly do you want to do with them? In a nut shell, let $$newNameElement = await $$('.button').filter( $elem => (await $elem.getText()).toLowerCase().includes('new name'); ) should return you all elements that you're looking for. so you can interact with each of them through forEach()
– Sergey Pleshakov
Nov 15 '18 at 16:45
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%2f53296888%2fiterate-until-matching-text-is-found%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
My answer is a shot in a dark due to lack of details in your question, but I'll try to guess your problem.
$$().getText()
returns array of strings, thus your code must be
let names = await $$('.button').getText();
for (let i=0; i<names.length; i++)
if (names[i].includes('New name'))
// do something here
But when you await $$().getText()
, and there are more than ~10 elements, be ready to face this error Random occurrences of Failed: ECONNREFUSED connect ECONNREFUSED 127.0.0.1 when running protractor tests
Actually, I must include another guess here based on an assumption you'll need to interact with the first element that matches condition
let $newNameElement = await $$('.button').filter( $elem =>
(await $elem.getText()).toLowerCase().includes('new name');
).get(0);
// do whatever you want with your $newNameElement
lmk if any problems
– Sergey Pleshakov
Nov 14 '18 at 18:29
Thanks for this. But the if statement still doesn't execute if use includes. But If i write if (name[i] === 'New name') it works. This way I can only validate one string. I want to match against multiple values
– Ninja
Nov 15 '18 at 15:12
when you find those elements, what exactly do you want to do with them? In a nut shell, let $$newNameElement = await $$('.button').filter( $elem => (await $elem.getText()).toLowerCase().includes('new name'); ) should return you all elements that you're looking for. so you can interact with each of them through forEach()
– Sergey Pleshakov
Nov 15 '18 at 16:45
add a comment |
My answer is a shot in a dark due to lack of details in your question, but I'll try to guess your problem.
$$().getText()
returns array of strings, thus your code must be
let names = await $$('.button').getText();
for (let i=0; i<names.length; i++)
if (names[i].includes('New name'))
// do something here
But when you await $$().getText()
, and there are more than ~10 elements, be ready to face this error Random occurrences of Failed: ECONNREFUSED connect ECONNREFUSED 127.0.0.1 when running protractor tests
Actually, I must include another guess here based on an assumption you'll need to interact with the first element that matches condition
let $newNameElement = await $$('.button').filter( $elem =>
(await $elem.getText()).toLowerCase().includes('new name');
).get(0);
// do whatever you want with your $newNameElement
lmk if any problems
– Sergey Pleshakov
Nov 14 '18 at 18:29
Thanks for this. But the if statement still doesn't execute if use includes. But If i write if (name[i] === 'New name') it works. This way I can only validate one string. I want to match against multiple values
– Ninja
Nov 15 '18 at 15:12
when you find those elements, what exactly do you want to do with them? In a nut shell, let $$newNameElement = await $$('.button').filter( $elem => (await $elem.getText()).toLowerCase().includes('new name'); ) should return you all elements that you're looking for. so you can interact with each of them through forEach()
– Sergey Pleshakov
Nov 15 '18 at 16:45
add a comment |
My answer is a shot in a dark due to lack of details in your question, but I'll try to guess your problem.
$$().getText()
returns array of strings, thus your code must be
let names = await $$('.button').getText();
for (let i=0; i<names.length; i++)
if (names[i].includes('New name'))
// do something here
But when you await $$().getText()
, and there are more than ~10 elements, be ready to face this error Random occurrences of Failed: ECONNREFUSED connect ECONNREFUSED 127.0.0.1 when running protractor tests
Actually, I must include another guess here based on an assumption you'll need to interact with the first element that matches condition
let $newNameElement = await $$('.button').filter( $elem =>
(await $elem.getText()).toLowerCase().includes('new name');
).get(0);
// do whatever you want with your $newNameElement
My answer is a shot in a dark due to lack of details in your question, but I'll try to guess your problem.
$$().getText()
returns array of strings, thus your code must be
let names = await $$('.button').getText();
for (let i=0; i<names.length; i++)
if (names[i].includes('New name'))
// do something here
But when you await $$().getText()
, and there are more than ~10 elements, be ready to face this error Random occurrences of Failed: ECONNREFUSED connect ECONNREFUSED 127.0.0.1 when running protractor tests
Actually, I must include another guess here based on an assumption you'll need to interact with the first element that matches condition
let $newNameElement = await $$('.button').filter( $elem =>
(await $elem.getText()).toLowerCase().includes('new name');
).get(0);
// do whatever you want with your $newNameElement
edited Nov 14 '18 at 18:29
answered Nov 14 '18 at 18:23
Sergey PleshakovSergey Pleshakov
210113
210113
lmk if any problems
– Sergey Pleshakov
Nov 14 '18 at 18:29
Thanks for this. But the if statement still doesn't execute if use includes. But If i write if (name[i] === 'New name') it works. This way I can only validate one string. I want to match against multiple values
– Ninja
Nov 15 '18 at 15:12
when you find those elements, what exactly do you want to do with them? In a nut shell, let $$newNameElement = await $$('.button').filter( $elem => (await $elem.getText()).toLowerCase().includes('new name'); ) should return you all elements that you're looking for. so you can interact with each of them through forEach()
– Sergey Pleshakov
Nov 15 '18 at 16:45
add a comment |
lmk if any problems
– Sergey Pleshakov
Nov 14 '18 at 18:29
Thanks for this. But the if statement still doesn't execute if use includes. But If i write if (name[i] === 'New name') it works. This way I can only validate one string. I want to match against multiple values
– Ninja
Nov 15 '18 at 15:12
when you find those elements, what exactly do you want to do with them? In a nut shell, let $$newNameElement = await $$('.button').filter( $elem => (await $elem.getText()).toLowerCase().includes('new name'); ) should return you all elements that you're looking for. so you can interact with each of them through forEach()
– Sergey Pleshakov
Nov 15 '18 at 16:45
lmk if any problems
– Sergey Pleshakov
Nov 14 '18 at 18:29
lmk if any problems
– Sergey Pleshakov
Nov 14 '18 at 18:29
Thanks for this. But the if statement still doesn't execute if use includes. But If i write if (name[i] === 'New name') it works. This way I can only validate one string. I want to match against multiple values
– Ninja
Nov 15 '18 at 15:12
Thanks for this. But the if statement still doesn't execute if use includes. But If i write if (name[i] === 'New name') it works. This way I can only validate one string. I want to match against multiple values
– Ninja
Nov 15 '18 at 15:12
when you find those elements, what exactly do you want to do with them? In a nut shell, let $$newNameElement = await $$('.button').filter( $elem => (await $elem.getText()).toLowerCase().includes('new name'); ) should return you all elements that you're looking for. so you can interact with each of them through forEach()
– Sergey Pleshakov
Nov 15 '18 at 16:45
when you find those elements, what exactly do you want to do with them? In a nut shell, let $$newNameElement = await $$('.button').filter( $elem => (await $elem.getText()).toLowerCase().includes('new name'); ) should return you all elements that you're looking for. so you can interact with each of them through forEach()
– Sergey Pleshakov
Nov 15 '18 at 16: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%2f53296888%2fiterate-until-matching-text-is-found%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
Why do you have 2 closing parenthesis ?
– executable
Nov 14 '18 at 9:34
Thanks for finding. I corrected it @executable
– Ninja
Nov 14 '18 at 9:45