using JdeScoping.Ui.Tests.Support;
namespace JdeScoping.Ui.Tests;
///
/// Playwright UI tests for the "Time Span + Profit Center + Extract MIS" search type (TC-090).
/// Validates search form interaction in smoke mode and full submission in strict mode.
/// Requires a running Docker host (Category: RequiresDockerHost).
///
public sealed class TimeSpanPcExtractMisSearchTests(PlaywrightFixture fixture) : SearchFlowTestBase(fixture)
{
///
/// Verifies the Time Span + Profit Center + Extract MIS search form submits with autocomplete filter (TC-090).
///
///
/// Steps (smoke mode stops after step 4; strict mode runs all steps):
///
/// - Navigate to the search page.
/// - Enter the search name "MIGRATED-TC-090".
/// - Select the "Time Span + Profit Center + Extract MIS" search type from the dropdown.
/// - Verify the dropdown displays the selected type.
/// - Set the date range to 01/01/2019 – 12/31/2019 (strict only).
/// - Add autocomplete value "1AM" to the "Filter by Profit Center" panel (strict only).
/// - Click Submit (strict only).
/// - Assert no error notification is present (strict only).
///
///
[Fact]
[Trait("Category", "RequiresDockerHost")]
public Task TimeSpanPcExtractMis_Submits()
{
return RunSearchSubmissionAsync(
UiSearchTypes.TimeSpanPcExtractMis,
"MIGRATED-TC-090",
"01/01/2019",
"12/31/2019",
[
("Filter by Profit Center", "1AM")
]);
}
}