Convert XML list markup to plain numbered text in UI test remarks

Replace <list type="number"><item>...</item></list> with plain numbered
lines in method-level <remarks> blocks across 23 UI test files to match
the codebase convention of using simple text in XML doc comments.
This commit is contained in:
Joseph Doherty
2026-02-10 08:05:42 -05:00
parent cd219ae00b
commit 9bd5e340b0
23 changed files with 167 additions and 213 deletions
@@ -14,15 +14,13 @@ public sealed class WorkOrderSearchTests(PlaywrightFixture fixture) : SearchFlow
/// </summary>
/// <remarks>
/// Steps (smoke mode stops after step 4; strict mode runs all steps):
/// <list type="number">
/// <item>Navigate to the search page.</item>
/// <item>Enter the search name "MIGRATED-TC-010".</item>
/// <item>Select the "Work Order" search type from the dropdown.</item>
/// <item>Verify the dropdown displays the selected type.</item>
/// <item>Upload "single_workorder.xlsx" to the "Filter by Work Order" panel (strict only).</item>
/// <item>Click Submit (strict only).</item>
/// <item>Assert no error notification is present (strict only).</item>
/// </list>
/// 1. Navigate to the search page.
/// 2. Enter the search name "MIGRATED-TC-010".
/// 3. Select the "Work Order" search type from the dropdown.
/// 4. Verify the dropdown displays the selected type.
/// 5. Upload "single_workorder.xlsx" to the "Filter by Work Order" panel (strict only).
/// 6. Click Submit (strict only).
/// 7. Assert no error notification is present (strict only).
/// </remarks>
[Fact]
[Trait("Category", "RequiresDockerHost")]