Hello,
I am trying to extract the value stored in the form field through Selenium Webdriver using Python, and even though I can see the value on the screen ("sHO_SB51_Upscore" in the image below), as you can see in Inspect Element window below it, there is nothing like this in HTML--no value, no attribute to pull out. How does this value get rendered?

If I try
test = driver.find_element_by_id("txtNewRuleName").text
it comes back as blank ('').
I can click on the field just fine, eg
test = driver.find_element_by_xpath("//input[@id='txtNewRuleName']").click()
but how to I get the value stored in the field of this form?
Thanks!