blob: d5a9e3124fdeb67d5c1f04b53e57147e7797a7b4 [file] [log] [blame]
# Powershell script to dump entire accessibility tree for Firefox, all windows + tabs.
$hwnd = Get-Process | Where-Object {$_.ProcessName -eq 'firefox'} | where MainWindowTitle -like "*Firefox" | select MainWindowHandle -ExpandProperty MainWindowHandle | Out-String
$hwnd_arg = "--window=" + $hwnd
$exe = ".\ax_dump_tree.exe"
& $exe $hwnd_arg