22 lines
626 B
C#
22 lines
626 B
C#
using JdeScoping.Ui.Tests.Support;
|
|
|
|
namespace JdeScoping.Ui.Tests;
|
|
|
|
public sealed class TimeSpanWcPartOpSearchTests(PlaywrightFixture fixture) : SearchFlowTestBase(fixture)
|
|
{
|
|
[Fact]
|
|
[Trait("Category", "RequiresDockerHost")]
|
|
public Task TimeSpanWcPartOp_Submits() =>
|
|
RunSearchSubmissionAsync(
|
|
UiSearchTypes.TimeSpanWcPartOp,
|
|
"MIGRATED-TC-120",
|
|
"01/01/2019",
|
|
"12/31/2019",
|
|
[
|
|
("Filter by Work Center", "0083AS")
|
|
],
|
|
[
|
|
("Filter By Item/Operation/MIS", "single_operation.xlsx")
|
|
]);
|
|
}
|