mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-09 13:30:08 +01:00
10 lines
265 B
Python
10 lines
265 B
Python
|
|
success, result = webview.RunScript(
|
|
"document.getElementById('some_id').innderHTML")
|
|
|
|
if success:
|
|
... result contains the contents of the given element ...
|
|
|
|
else:
|
|
... the element with self ID probably doesn't exist ...
|