how to get text field value from protractor web driver Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experience Should we burninate the [wrap] tag?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How to get the children of the $(this) selector?How can I get query string values in JavaScript?How to get the value from the GET parameters?Get selected text from a drop-down list (select box) using jQueryGet the size of the screen, current web page and browser windowHow do I remove a particular element from an array in JavaScript?How do I get the value of text input field using JavaScript?How do I return the response from an asynchronous call?
Does accepting a pardon have any bearing on trying that person for the same crime in a sovereign jurisdiction?
Stars Make Stars
How to recreate this effect in Photoshop?
Storing hydrofluoric acid before the invention of plastics
"Seemed to had" is it correct?
How to motivate offshore teams and trust them to deliver?
Is there a documented rationale why the House Ways and Means chairman can demand tax info?
Can Pao de Queijo, and similar foods, be kosher for Passover?
What is the correct way to use the pinch test for dehydration?
Do you forfeit tax refunds/credits if you aren't required to and don't file by April 15?
What are 'alternative tunings' of a guitar and why would you use them? Doesn't it make it more difficult to play?
G-Code for resetting to 100% speed
What is the musical term for a note that continously plays through a melody?
How does a Death Domain cleric's Touch of Death feature work with Touch-range spells delivered by familiars?
How do I keep my slimes from escaping their pens?
Why aren't air breathing engines used as small first stages
What makes black pepper strong or mild?
∞ symbol in external pdf disappears when used as figure
What is this single-engine low-wing propeller plane?
How to draw this diagram using TikZ package?
Is the address of a local variable a constexpr?
Antler Helmet: Can it work?
Is 1 ppb equal to 1 μg/kg?
What is a Meta algorithm?
how to get text field value from protractor web driver
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
The Ask Question Wizard is Live!
Data science time! April 2019 and salary with experience
Should we burninate the [wrap] tag?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How to get the children of the $(this) selector?How can I get query string values in JavaScript?How to get the value from the GET parameters?Get selected text from a drop-down list (select box) using jQueryGet the size of the screen, current web page and browser windowHow do I remove a particular element from an array in JavaScript?How do I get the value of text input field using JavaScript?How do I return the response from an asynchronous call?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am working on a task where I am automating the front end pages. There I need to get the text field value whether it is null or not. I am trying to get the suggestion from previous questions but it is not working.
browser.driver.findElement(this.filename).sendkeys(this.filenamevalue);
console.log(browser.driver.findElement(this.filename).getAttribute('value'));
I am not getting the output which I passed as input through filename value. I am getting the output as some JSON object with all parameters.
javascript typescript selenium selenium-webdriver protractor
add a comment |
I am working on a task where I am automating the front end pages. There I need to get the text field value whether it is null or not. I am trying to get the suggestion from previous questions but it is not working.
browser.driver.findElement(this.filename).sendkeys(this.filenamevalue);
console.log(browser.driver.findElement(this.filename).getAttribute('value'));
I am not getting the output which I passed as input through filename value. I am getting the output as some JSON object with all parameters.
javascript typescript selenium selenium-webdriver protractor
add a comment |
I am working on a task where I am automating the front end pages. There I need to get the text field value whether it is null or not. I am trying to get the suggestion from previous questions but it is not working.
browser.driver.findElement(this.filename).sendkeys(this.filenamevalue);
console.log(browser.driver.findElement(this.filename).getAttribute('value'));
I am not getting the output which I passed as input through filename value. I am getting the output as some JSON object with all parameters.
javascript typescript selenium selenium-webdriver protractor
I am working on a task where I am automating the front end pages. There I need to get the text field value whether it is null or not. I am trying to get the suggestion from previous questions but it is not working.
browser.driver.findElement(this.filename).sendkeys(this.filenamevalue);
console.log(browser.driver.findElement(this.filename).getAttribute('value'));
I am not getting the output which I passed as input through filename value. I am getting the output as some JSON object with all parameters.
javascript typescript selenium selenium-webdriver protractor
javascript typescript selenium selenium-webdriver protractor
edited Mar 22 at 8:31
Fenio
1,4261915
1,4261915
asked Mar 22 at 8:23
vamsi reddyvamsi reddy
709
709
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You need to resolve a promise:
browser.driver.findElement(this.filename).getAttribute('value').then((elementValue) =)
console.log(elementValue)
);
add a comment |
Use async/await instead of resolving the promise.
(async()=>
let elm_text = await browser.driver.findElement(this.filename).getAttribute('value');
console.log(elm_text);
)()
If you are writing this snippet inside a function then make the function async
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%2f55295532%2fhow-to-get-text-field-value-from-protractor-web-driver%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
You need to resolve a promise:
browser.driver.findElement(this.filename).getAttribute('value').then((elementValue) =)
console.log(elementValue)
);
add a comment |
You need to resolve a promise:
browser.driver.findElement(this.filename).getAttribute('value').then((elementValue) =)
console.log(elementValue)
);
add a comment |
You need to resolve a promise:
browser.driver.findElement(this.filename).getAttribute('value').then((elementValue) =)
console.log(elementValue)
);
You need to resolve a promise:
browser.driver.findElement(this.filename).getAttribute('value').then((elementValue) =)
console.log(elementValue)
);
answered Mar 22 at 8:25
KacperKacper
9401516
9401516
add a comment |
add a comment |
Use async/await instead of resolving the promise.
(async()=>
let elm_text = await browser.driver.findElement(this.filename).getAttribute('value');
console.log(elm_text);
)()
If you are writing this snippet inside a function then make the function async
add a comment |
Use async/await instead of resolving the promise.
(async()=>
let elm_text = await browser.driver.findElement(this.filename).getAttribute('value');
console.log(elm_text);
)()
If you are writing this snippet inside a function then make the function async
add a comment |
Use async/await instead of resolving the promise.
(async()=>
let elm_text = await browser.driver.findElement(this.filename).getAttribute('value');
console.log(elm_text);
)()
If you are writing this snippet inside a function then make the function async
Use async/await instead of resolving the promise.
(async()=>
let elm_text = await browser.driver.findElement(this.filename).getAttribute('value');
console.log(elm_text);
)()
If you are writing this snippet inside a function then make the function async
answered Mar 25 at 12:01
Bharath Kumar SBharath Kumar S
5841421
5841421
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%2f55295532%2fhow-to-get-text-field-value-from-protractor-web-driver%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