pywinaoto怎么获取控件的value

pywinauto怎么获取控件内容值,不是控件NAME,是VALUE

cli = dlg.child_window("Exposure", control_type="Group")
t=cli.children()[3]
#t.draw_outline()
print(t.get_value)

报错说E AttributeError: 'UIAWrapper' object has no attribute 'get_value’

尝试过.test,windows_test获取到的是"Exposure"

这个控件是一个数据输入框,我想要里面的值,这样就可以断言修改的数据是否被正确修改了