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;








0















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.










share|improve this question






























    0















    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.










    share|improve this question


























      0












      0








      0








      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.










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 22 at 8:31









      Fenio

      1,4261915




      1,4261915










      asked Mar 22 at 8:23









      vamsi reddyvamsi reddy

      709




      709






















          2 Answers
          2






          active

          oldest

          votes


















          1














          You need to resolve a promise:



          browser.driver.findElement(this.filename).getAttribute('value').then((elementValue) =) 
          console.log(elementValue)
          );





          share|improve this answer






























            0














            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






            share|improve this answer























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



              );













              draft saved

              draft discarded


















              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









              1














              You need to resolve a promise:



              browser.driver.findElement(this.filename).getAttribute('value').then((elementValue) =) 
              console.log(elementValue)
              );





              share|improve this answer



























                1














                You need to resolve a promise:



                browser.driver.findElement(this.filename).getAttribute('value').then((elementValue) =) 
                console.log(elementValue)
                );





                share|improve this answer

























                  1












                  1








                  1







                  You need to resolve a promise:



                  browser.driver.findElement(this.filename).getAttribute('value').then((elementValue) =) 
                  console.log(elementValue)
                  );





                  share|improve this answer













                  You need to resolve a promise:



                  browser.driver.findElement(this.filename).getAttribute('value').then((elementValue) =) 
                  console.log(elementValue)
                  );






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Mar 22 at 8:25









                  KacperKacper

                  9401516




                  9401516























                      0














                      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






                      share|improve this answer



























                        0














                        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






                        share|improve this answer

























                          0












                          0








                          0







                          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






                          share|improve this answer













                          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







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Mar 25 at 12:01









                          Bharath Kumar SBharath Kumar S

                          5841421




                          5841421



























                              draft saved

                              draft discarded
















































                              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.




                              draft saved


                              draft discarded














                              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





















































                              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







                              Popular posts from this blog

                              Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                              Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                              Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript