Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions tests/e2e/pageObjects/browser-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export class BrowserPage {
removeFromHeadSelection = Selector('#HEAD');
selectedFilterTypeString = Selector('[data-testid=filter-option-type-selected-string]');
filterOptionType = Selector('[data-test-subj^=filter-option-type-]');
filterByKeyTypeDropDown = Selector('[data-testid=filter-option-type-default]');
filterByKeyTypeDropDown = Selector('[data-testid=filter-option-type-default]', { timeout: 500 });
filterOptionTypeSelected = Selector('[data-testid^=filter-option-type-selected]');
consumerOption = Selector('[data-testid=consumer-option]');
claimTimeOptionSelect = Selector('[data-testid=time-option-select]');
Expand Down Expand Up @@ -996,8 +996,7 @@ export class BrowserPage {
const regExp = new RegExp(`${i} 00` + '.');
await t
.expect(scannedValueText).match(regExp, `The database is not automatically scanned by ${i} 000 keys`)
.doubleClick(this.scanMoreButton)
.expect(this.progressKeyList.exists).ok('Progress Bar is not displayed');
.click(this.scanMoreButton);
const scannedResults = Number((await this.keysNumberOfResults.textContent).replace(/\s/g, ''));
await t.expect(scannedResults).gt(rememberedScanResults);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ test
.before(async t => {
await acceptLicenseTermsAndAddDatabaseApi(ossStandaloneRedisearch, ossStandaloneRedisearch.databaseName);
// Create keys
await populateHashWithFields('localhost', '8102', keyToAddParameters2);
await populateHashWithFields(ossStandaloneRedisearch.host, ossStandaloneRedisearch.port, keyToAddParameters2);
// Go to Analysis Tools page
await t.click(myRedisDatabasePage.analysisPageButton);
})
Expand Down