[UA] Remove Ex from global search bar (#142916)

This commit is contained in:
Lisa Cawley 2022-10-14 10:56:40 -07:00 committed by GitHub
parent e46da93553
commit 5a535ed0ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -269,7 +269,7 @@ export const SearchBar: FC<SearchBarProps> = ({
);
const placeholderText = i18n.translate('xpack.globalSearchBar.searchBar.placeholder', {
defaultMessage: 'Find apps, content, and more. Ex: Discover',
defaultMessage: 'Find apps, content, and more.',
});
const keyboardShortcutTooltip = `${i18n.translate(
'xpack.globalSearchBar.searchBar.shortcutTooltip.description',

View file

@ -47,9 +47,9 @@ journey('AddPrivateLocationMonitor', async ({ page, params: { kibanaUrl } }) =>
await page.click('[data-test-subj="superDatePickerApplyTimeButton"]');
});
step('Click [placeholder="Find apps, content, and more. Ex: Discover"]', async () => {
await page.click('[placeholder="Find apps, content, and more. Ex: Discover"]');
await page.fill('[placeholder="Find apps, content, and more. Ex: Discover"]', 'integ');
step('Click [placeholder="Find apps, content, and more."]', async () => {
await page.click('[placeholder="Find apps, content, and more."]');
await page.fill('[placeholder="Find apps, content, and more."]', 'integ');
await Promise.all([
page.waitForNavigation(/* { url: '${kibanaUrl}/app/integrations/browse' }*/),
page.click('text=Integrations'),