You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1249,6 +1251,7 @@ type ManifestTemplates = "packaged" | "sparse"
1249
1251
| `manifest` | `string \| undefined` | No | Path to the appxmanifest.xml (default:auto-detectfrominputfolderorcurrentdirectory) |
1250
1252
| `noLaunch` | `boolean \| undefined` | No | Only create the debug identity and register the package without launching the application |
1251
1253
| `outputAppxDirectory` | `string \| undefined` | No | Output directory for the loose layout package. If not specified, a directory named AppX inside the input-folder directory will be used. |
1254
+
| `symbols` | `boolean \| undefined` | No | Download symbols from Microsoft Symbol Server for richer native crash analysis. Only used with --debug-output. First run downloads symbols and caches them locally; subsequent runs use the cache. |
1252
1255
| `unregisterOnExit` | `boolean \| undefined` | No | Unregister the development package after the application exits. Only removes packages registered in development mode. |
1253
1256
| `withAlias` | `boolean \| undefined` | No | Launch the app using its execution alias instead of AUMID activation. The app runs in the current terminal with inherited stdin/stdout/stderr. Requires a uap5:ExecutionAlias in the manifest. Use "winapp manifest add-alias" to add an execution alias to the manifest. |
@@ -1469,11 +1472,12 @@ type ManifestTemplates = "packaged" | "sparse"
1469
1472
|----------|------|----------|-------------|
1470
1473
| `selector` | `string \| undefined` | No | Semantic slug (e.g., btn-minimize-d1a0) or text to search by name/automationId |
1471
1474
| `app` | `string \| undefined` | No | Target app (processname, windowtitle, orPID). Lists windows if ambiguous. |
1475
+
| `contains` | `boolean \| undefined` | No | Use substring matching for --value instead of exact match |
1472
1476
| `gone` | `boolean \| undefined` | No | Wait for element to disappear instead of appear |
1473
1477
| `json` | `boolean \| undefined` | No | Format output as JSON |
1474
1478
| `property` | `string \| undefined` | No | Property name to read or filter on |
1475
1479
| `timeout` | `number \| undefined` | No | Timeout in milliseconds |
1476
-
| `value` | `string \| undefined` | No | Wait for property to equal this value (usewith --property) |
1480
+
| `value` | `string \| undefined` | No | Wait for element value to equal this string. Uses smart fallback (TextPattern → ValuePattern → Name). Combine with --property to check a specific property instead. |
1477
1481
| `window` | `number \| undefined` | No | Target window by HWND (stablehandlefromlistoutput). Takes precedence over --app. |
/** Output directory for the loose layout package. If not specified, a directory named AppX inside the input-folder directory will be used. */
457
457
outputAppxDirectory?: string;
458
+
/** Download symbols from Microsoft Symbol Server for richer native crash analysis. Only used with --debug-output. First run downloads symbols and caches them locally; subsequent runs use the cache. */
459
+
symbols?: boolean;
458
460
/** Unregister the development package after the application exits. Only removes packages registered in development mode. */
459
461
unregisterOnExit?: boolean;
460
462
/** Launch the app using its execution alias instead of AUMID activation. The app runs in the current terminal with inherited stdin/stdout/stderr. Requires a uap5:ExecutionAlias in the manifest. Use "winapp manifest add-alias" to add an execution alias to the manifest. */
/** Wait for property to equal this value (use with --property) */
978
+
/** Wait for element value to equal this string. Uses smart fallback (TextPattern → ValuePattern → Name). Combine with --property to check a specific property instead. */
974
979
value?: string;
975
980
/** Target window by HWND (stable handle from list output). Takes precedence over --app. */
0 commit comments