Skip to content

Commit 87d4d93

Browse files
committed
fix
1 parent a415085 commit 87d4d93

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/e2e/pageObjects/browser-page.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export class BrowserPage {
124124
removeFromHeadSelection = Selector('#HEAD');
125125
selectedFilterTypeString = Selector('[data-testid=filter-option-type-selected-string]');
126126
filterOptionType = Selector('[data-test-subj^=filter-option-type-]');
127-
filterByKeyTypeDropDown = Selector('[data-testid=filter-option-type-default]');
127+
filterByKeyTypeDropDown = Selector('[data-testid=filter-option-type-default]', { timeout: 500 });
128128
filterOptionTypeSelected = Selector('[data-testid^=filter-option-type-selected]');
129129
consumerOption = Selector('[data-testid=consumer-option]');
130130
claimTimeOptionSelect = Selector('[data-testid=time-option-select]');
@@ -996,8 +996,7 @@ export class BrowserPage {
996996
const regExp = new RegExp(`${i} 00` + '.');
997997
await t
998998
.expect(scannedValueText).match(regExp, `The database is not automatically scanned by ${i} 000 keys`)
999-
.doubleClick(this.scanMoreButton)
1000-
.expect(this.progressKeyList.exists).ok('Progress Bar is not displayed');
999+
.click(this.scanMoreButton);
10011000
const scannedResults = Number((await this.keysNumberOfResults.textContent).replace(/\s/g, ''));
10021001
await t.expect(scannedResults).gt(rememberedScanResults);
10031002
}

0 commit comments

Comments
 (0)