Maybe if you can just in the Browser - F12 check what the exact id of such an input is (it will probably be something like uid247_0_7__usetb0). I was hoping the ParentString in your screenshots would reveal that. I just don't get why the future is null, and without it, it can not retrieve the text value.
If we have the exact ID, we can then try this manually:
Dim txt As JQueryElement = page.ws.GetElementById("whateverexactidwegot")
Dim text As Future = txt.GetVal
Log(text.Value)
It is in theory the same as what ABM does internally.
Alain