blob: 999c239171c48ac8f866b948a2b088b7185695f0 [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