Please note, that the above "nested expression" does not
contain any parentheses (which indicate function-calls). So, it has to be
"pure properties"
Debug.Print
OrdoWebview1.jsProp("document.querySelector('input').value") will not
work
To solve this problem, add a little helper-function like
: OrdoWebView1.AddScriptToExecuteOnDocumentCreated
"function getQSValue(qsExpr){return
document.getElementById((qsExpr)).value}"
...before loading a
document.
This will
allow to use RunJs(...) instead, to get the
values: Debug.Print
OrdoWebview1.RunJs("getQSValue",
"input")