Search code examples
python-3.xpywin32pywinauto

Unable to get text that has no identifier inside pane with pywinauto


I have pane inside pane , identifiers are available till pane inside pane I want to get text.enter image description here

Identifiers are as enter image description here

Is there any way to get text having no identifier inside pane


Solution

  • It's impossible using MS UI Automation API (both Inspect.exe and pywinauto use it under the hood).

    If it's .NET app, it could be possible in far theory by managed DLL injection. I'm aware about only this minimal proof-of-concept: https://github.com/vperevalov/WPFA (not tried yet).