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
6 changes: 3 additions & 3 deletions tests/e2e/pageObjects/browser-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,12 +168,12 @@ export class BrowserPage {
jsonScalarValue = Selector('[data-testid=json-scalar-value]');
noKeysToDisplayText = Selector('[data-testid=no-keys-selected-text]');
virtualTableContainer = Selector('[data-testid=virtual-table-container]');
streamEntriesContainer = Selector('[data-test-id=stream-entries-container]');
streamEntriesContainer = Selector('[data-testid=stream-entries-container]');
streamEntryColumns = Selector(this.streamEntriesContainer.find('[aria-colcount]'));
streamEntryRows = Selector(this.streamEntriesContainer.find('[aria-rowcount]'));
streamEntryDate = Selector('[data-testid*=-date][data-testid*=stream-entry]');
streamEntryIdValue = Selector('.streamEntryId[data-testid*=stream-entry]');
streamFields = Selector('[data-test-id=stream-entries-container] .truncateText span');
streamEntryIdValue = Selector('.streamItemId[data-testid*=stream-entry]');
streamFields = Selector('[data-testid=stream-entries-container] .truncateText span');
streamEntryFields = Selector('[data-testid^=stream-entry-field]');
confirmationMessagePopover = Selector('div.euiPopover__panel .euiText ');

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/tests/regression/browser/stream-key.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,5 +120,5 @@ test('Verify that user can see a confirmation message when request to delete an
await t.click(browserPage.removeEntryButton);
//Check the confirmation message
await t.expect(browserPage.confirmationMessagePopover.textContent).contains(confirmationMessage, `The confirmation message ${keyName}`);
await t.expect(browserPage.confirmationMessagePopover.textContent).contains(entryId, `The confirmation message for removing Entry`);
await t.expect(browserPage.confirmationMessagePopover.textContent).contains(entryId, 'The confirmation message for removing Entry');
});