27

Using Selenium for .NET, how can I get the current value from a html input?

It's possible to .GetAttribute() to get the value attribute but this is the html attribute rather than the current value entered into the text box; an approach similar to jQuery's .val() rather than jQuery's .attr().

1

1 Answer 1

59

Element.Text didn't work for me. I used element.GetAttribute("value")

Check out this Q&A Setting input textbox text and then retrieving it in Specflow & Selenium

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.