コード例 #1
0
        public void ThenTheOnlyTwoCasesWithTheSameICreatedAreDisplayed(CaseSearchProperty property)
        {
            FlowUtilities.WaitUntil(
                () => (mainCasesPage.SelectCases(caseCreatedForSearch, property)), TimeSpan.FromSeconds(2000), TimeSpan.FromMilliseconds(25));

            Assert.True(mainCasesPage.SelectCases(caseCreatedForSearch, property), "The searching filter is not working");
        }
コード例 #2
0
ファイル: CaseCreationSteps.cs プロジェクト: iamcucusa/e2e
 public void ThenTheCaseIsDisplayedInTheListWithTheRexisId()
 {
     mainCasesPage.SelectCases(new Case {
         CaseID = rexisId
     }, CasesOverviewSteps.CaseSearchProperty.CaseId);
 }