如何 see/scrape 隐藏在页面源代码中的真实文本值?

How can I see/scrape the real text value hidden in page source?

当我在源页面中看不到真实值时,如何在页面上抓取真实文本值“2015-10-31”?我可以抓取 html 的右侧,但我需要知道左侧显示的值“2015-10-31”。我搜索的所有内容都是使用 selenium 自动呈现 javascript,但结果对我来说毫无意义,因为我想要 table 中的真实值,而不是 Webkit 中显示的相同结果。有什么办法可以挖掘这种隐藏价值?

该值未显示在页面源代码中,因为它是相关输入的值。使用 get_attribute("value"):

browser.find_element_by_id("Estimated_Due_Date").get_attribute("value")